/**
  * Init the controller.
  *
  * Add an wordpress action to create the admin menu/submenu page
  */
 public function init()
 {
     parent::init();
     //init the admin menu if required
     \add_action('admin_menu', array($this, 'adminMenu'), 11);
     return $this;
 }