WP = $theme->getWP(); $this->key = 'core_hooks'; $this->name = 'Hooks'; $this->description = 'Handles plugin hooks management'; } /** * Sanitize input */ public function sanitize() { /** Grab Data */ $this->params = $_POST; $this->params = $this->params['bingopress_hooks']; /** Sanitize Text Field */ $this->params = (object) $this->WP->sanitizeTextField( $this->params ); } }