芝麻web文件管理V1.00
编辑当前文件:/home/dcqnetm/icbs-recup/wp-content/plugins/cookie-law-info/lite/includes/class-modules.php
module_id = $module_id; if ( true === $this->is_active() ) { $this->init(); } } /** * Return true if the module is activated * * @return Boolean */ public function is_active() { $module_id = $this->get_module_id(); return apply_filters( "cky_is_module_active_$module_id", true ); } /** * Return the module slug name * * @return string */ public function get_module_id() { return $this->module_id; } /** * Initializes the module. Always executed even if the module is deactivated. * * Do not use __construct in subclasses, use init() instead */ abstract public function init(); }