Done !
Server IP : 162.0.217.223 / Your IP : 216.73.216.153 Web Server : LiteSpeed System : Linux premium269.web-hosting.com 4.18.0-553.lve.el8.x86_64 #1 SMP Mon May 27 15:27:34 UTC 2024 x86_64 User : mypckeys ( 1539) PHP Version : 8.1.33 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : OFF | Pkexec : OFF Directory : /home/mypckeys/yeslicense.org/wp-content/plugins/squirrly-seo/classes/ |
Upload File : |
<?php defined( 'ABSPATH' ) || die( 'Cheatin\' uh?' ); /** * The class handles the actions in WP */ class SQ_Classes_HookController { /** * @var array the WP actions list from admin */ private $admin_hooks = array(); private $front_hooks = array(); private $block_hooks = array(); public function __construct() { $this->admin_hooks = array( 'init' => 'admin_init', 'head' => 'admin_head', 'footer' => 'admin_footer', 'menu' => 'admin_menu', 'networkMenu' => 'network_admin_menu', 'notices' => 'admin_notices', ); //called in frontend $this->front_hooks = array( // -- 'init' => 'init', 'preload' => 'template_redirect', 'frontinit' => 'init', 'fronthead' => 'wp_head', 'frontfooter' => 'wp_footer', ); $this->block_hooks = array( 'getContent' => 'getContent' ); } /** * Calls the specified action in WP * * @param object $instance The parent class instance * * @return void */ public function setHooks( $instance ) { if ( is_admin() || is_network_admin() ) { $this->setAdminHooks( $instance ); } else { $this->setFrontHooks( $instance ); } } /** * Calls the specified action in WP * * @param object $instance The parent class instance * * @return void */ public function setAdminHooks( $instance ) { /* for each admin action check if is defined in class and call it */ foreach ( $this->admin_hooks as $hook => $value ) { if ( is_callable( array( $instance, 'hook' . ucfirst( $hook ) ) ) ) { //call the WP add_action function add_action( $value, array( $instance, 'hook' . ucfirst( $hook ) ), 5 ); } } } /** * Calls the specified action in WP * * @param object $instance The parent class instance * * @return void */ public function setFrontHooks( $instance ) { /* for each admin action check if is defined in class and call it */ foreach ( $this->front_hooks as $hook => $value ) { if ( is_callable( array( $instance, 'hook' . ucfirst( $hook ) ) ) ) { //call the WP add_action function add_action( $value, array( $instance, 'hook' . ucfirst( $hook ) ), 5 ); } } } /** * Calls the specified action in WP * * @param string $action * @param array $callback Contains the class name or object and the callback function * * @return void */ public function setAction( $action, $obj, $callback ) { /* calls the custom action function from WP */ add_action( $action, array( $obj, $callback ), 10 ); } /** * Calls the specified action in WP * * @param object $instance The parent class instance * * @return void */ public function setBlockHooks( $instance ) { $param_arr = array(); /* for each admin action check if is defined in class and call it */ foreach ( $this->block_hooks as $hook => $value ) { if ( is_callable( array( $instance, 'hook' . ucfirst( $hook ) ) ) ) { //call the WP add_action function call_user_func_array( array( $instance, 'hook' . ucfirst( $hook ) ), $param_arr ); } } } }