📁 File Manager Pro
v10.0.2 | PHP: 8.1.34
Server: LiteSpeed
2026-06-26 10:25:59
📂
/
/
home
/
pallabnv
/
public_html
/
wp-content__3bb9dea
/
themes
/
berich
/
inc
/
classes
✏️
Editing: class-base.php
<?php /** * @package Case-Themes */ if( !defined( 'ABSPATH' ) ) exit; // Exit if accessed directly if( !class_exists( 'Berich_Base' ) ) : class Berich_Base { public function add_action( $hook, $function_to_add, $priority = 10, $accepted_args = 1 ) { add_action( $hook, array( &$this, $function_to_add ), $priority, $accepted_args ); } public function add_filter( $tag, $function_to_add, $priority = 10, $accepted_args = 1 ) { add_filter( $tag, array( &$this, $function_to_add ), $priority, $accepted_args ); } } endif; // Helper Function --------------------------------------- if( ! function_exists( 'pxl_action' ) ) : function pxl_action() { $args = func_get_args(); if( !isset( $args[0] ) || empty( $args[0] ) ) { return; } $action = 'pxltheme_' . $args[0]; unset( $args[0] ); do_action_ref_array( $action, $args ); } endif;
💾 Save Changes
❌ Cancel