[ SYSTEM ]: Linux wordpress 6.1.0-44-amd64 #1 SMP PREEMPT_DYNAMIC Debian 6.1.164-1 (2026-03-09) x86_64
[ SERVER ]: Apache/2.4.66 (Debian) | PHP: 8.2.30
[ USER ]: www-data | IP: 172.19.30.54
GEFORCE FILE MANAGER
/
var
/
www
/
html
/
wordpress
/
wp-content
/
plugins
/
astra-addon
/
classes
/
deprecated
/
UPLOAD:
NAME
SIZE
QUICK PERMS
ACTIONS
📄 deprecated-actions.php
1,974 B
SET
[ EDIT ]
|
[ DEL ]
📄 deprecated-filters.php
16,660 B
SET
[ EDIT ]
|
[ DEL ]
📄 deprecated-functions.php
24,161 B
SET
[ EDIT ]
|
[ DEL ]
📄 handler.php
950 B
SET
[ EDIT ]
|
[ DEL ]
DELETE SELECTED
[ CLOSE ]
EDIT: deprecated-actions.php
<?php /** * Deprecated Actions of Astra Addon. * * @package Astra * @link https://wpastra.com/ * @since Astra 3.5.7 */ if ( ! defined( 'ABSPATH' ) ) { exit; } if ( function_exists( 'astra_do_action_deprecated' ) ) { /** * Depreciating Astra AJAX pgination actions. * * @since 3.5.7 */ astra_do_action_deprecated( 'astra_shop_pagination_infinite', array(), '3.5.7' ); astra_do_action_deprecated( 'astra_pagination_infinite', array(), '3.5.7' ); } // Depreciating astra_get_css_files hook. add_action( 'astra_addon_get_css_files', 'astra_deprecated_astra_get_css_files_hook' ); /** * Depreciating 'astra_get_css_files' action & replacing with 'astra_addon_get_css_files'. * * @since 3.6.2 */ function astra_deprecated_astra_get_css_files_hook() { // phpcs:ignore WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedFunctionFound astra_do_action_deprecated( 'astra_get_css_files', array(), '3.6.2', 'astra_addon_get_css_files' ); } // Depreciating astra_get_js_files hook. add_action( 'astra_addon_get_js_files', 'astra_deprecated_astra_get_js_files_hook' ); /** * Depreciating 'astra_get_js_files' action & replacing with 'astra_addon_get_js_files'. * * @since 3.6.2 */ function astra_deprecated_astra_get_js_files_hook() { // phpcs:ignore WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedFunctionFound astra_do_action_deprecated( 'astra_get_js_files', array(), '3.6.2', 'astra_addon_get_js_files' ); } // Depreciating astra_after_render_js hook. add_action( 'astra_addon_after_render_js', 'astra_deprecated_astra_after_render_js_hook' ); /** * Depreciating 'astra_after_render_js' action & replacing with 'astra_addon_after_render_js'. * * @since 3.6.2 */ function astra_deprecated_astra_after_render_js_hook() { // phpcs:ignore WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedFunctionFound astra_do_action_deprecated( 'astra_after_render_js', array(), '3.6.2', 'astra_addon_after_render_js' ); }