/home/altere25/rockymountainlax.com/wp-content/plugins/PDFEmbedder-premium
NameSizeModeActions
assets/-0755rm
block/-0755rm
src/-0755rm
templates/-0755rm
vendor/-0755rm
CHANGELOG.md73350644editdlrm
mobile_pdf_embedder.php26670644editdlrm
requirements.php58200644editdlrm
uninstall.php1590644editdlrm
Edit: /home/altere25/rockymountainlax.com/wp-content/plugins/PDFEmbedder-premium/requirements.php (5820B)
missing = 'not_activated_lite'; } else { // Not even installed. $this->missing = 'not_installed_lite'; } return true; } // If older version is activated. $plugin_data = get_plugin_data( WP_PLUGIN_DIR . '/' . self::LITE_PLUGIN_SLUG, false, false ); if ( version_compare( $plugin_data['Version'], self::MIN_LITE_VERSION, '<' ) ) { $this->missing = 'old_active_lite'; return true; } return false; } /** * Notify the user about missing requirements. * * @since 5.2.0 */ public function notify() { switch ( $this->missing ) { case 'not_installed_lite': $this->notice_not_installed_lite(); break; case 'not_activated_lite': $this->notice_not_activated_lite(); break; case 'old_active_lite': $this->notice_old_active_lite(); break; } } /** * Display a notice when PDF Embedder Lite is not installed and not activated. * * @since 5.2.0 */ private function notice_not_installed_lite() { // phpcs:ignore WPForms.PHP.HooksMethod.InvalidPlaceForAddingHooks add_action( 'admin_notices', static function () { ?>

'; if ( current_user_can( 'install_plugins' ) ) { $action_url = wp_nonce_url( add_query_arg( [ 'action' => 'install-plugin', 'plugin' => self::LITE_PLUGIN_BASE, ], admin_url( 'update.php' ) ), 'install-plugin_' . self::LITE_PLUGIN_BASE ); printf( wp_kses( /* translators: %s - PDF Embedder Lite install URL. */ __( 'Please install and activate the Lite version to continue.', 'pdf-embedder-premium' ), [ 'a' => [ 'href' => [], ], ] ), esc_url( $action_url ) ); } else { esc_html_e( 'Please install and activate the Lite version to continue.', 'pdf-embedder-premium' ); } ?>

'; if ( current_user_can( 'activate_plugins' ) ) { $action_url = wp_nonce_url( add_query_arg( [ 'action' => 'activate', 'plugin' => rawurlencode( self::LITE_PLUGIN_SLUG ), ], admin_url( 'plugins.php' ) ), 'activate-plugin_' . self::LITE_PLUGIN_SLUG ); printf( wp_kses( /* translators: %s - PDF Embedder Lite activate URL. */ __( 'Please activate the Lite version to continue.', 'pdf-embedder-premium' ), [ 'a' => [ 'href' => [], ], ] ), esc_url( $action_url ) ); } else { esc_html_e( 'Please activate the Lite version to continue.', 'pdf-embedder-premium' ); } ?>

'; if ( current_user_can( 'update_plugins' ) ) { $action_url = wp_nonce_url( add_query_arg( [ 'action' => 'upgrade-plugin', 'plugin' => rawurlencode( self::LITE_PLUGIN_SLUG ), ], self_admin_url( 'update.php' ) ), 'upgrade-plugin_' . self::LITE_PLUGIN_SLUG ); printf( wp_kses( /* translators: %s - PDF Embedder Lite activate URL. */ __( 'Please update the Lite version to continue.', 'pdf-embedder-premium' ), [ 'a' => [ 'href' => [], ], ] ), esc_url( $action_url ) ); } else { esc_html_e( 'Please update the Lite version to continue.', 'pdf-embedder-premium' ); } ?>