public function _actionRegisterViewsButton()
 {
     if (!class_exists('WP_Views')) {
         remove_action('wp_enqueue_scripts', array($this, '_actionScriptsAndStyles'));
         $this->isLoaded();
         return;
     }
     $view = new WP_Views();
     $view->wpv_register_assets();
     $view->add_dialog_to_editors();
 }