style = $style; $this->title = $title; $this->callable = $callable; } public function handle( WP_User $user, array $data ) { return call_user_func( $this->callable, $user, $data ); } public function get_title() { return $this->title; } public function get_style() { return $this->style; } public function get_uri() { return ''; } }