Submit
Path:
~
/
home
/
getwphos
/
public_html
/
shellfish
/
wp-content
/
plugins
/
uipro
/
includes
/
classes
/
File Content:
class-base.php
<?php defined('UIPRO') or exit(); use UIPro\UIPro_Functions; abstract class UIPro_Base{ protected $core; protected $theme; protected $post_type; protected $cache = array(); public function __construct() { $this -> theme = \wp_get_theme(); } public function get_name(){ $class_name = get_called_class(); $meta_name = preg_replace('#^(.*?[\\\\])+#i', '', $class_name); return strtolower($meta_name); } public function get_property($name, $default = ''){ if(isset($this -> {$name})){ return $this -> {$name}; } return $default; } protected function _get_store_id($args = array()){ $_args = \func_get_args(); $store_id = serialize($_args); return md5($store_id); } }
Submit
FILE
FOLDER
Name
Size
Permission
Action
class-abstract-config.php
59356 bytes
0644
class-base.php
872 bytes
0644
class-el-mapping.php
5942 bytes
0644
class-el-widget.php
18748 bytes
0644
class-el.php
6906 bytes
0644
N4ST4R_ID | Naxtarrr