/**
  * 
  * set view that will be the master
  */
 protected static function setMasterView($masterView)
 {
     self::$master_view = $masterView;
 }
 /**
  * add scripts to normal pages
  */
 public static function addScriptsNormal()
 {
     parent::addCommonScripts();
     HelperUG::addScript("unitegallery_admin");
     HelperUG::addScript("unitegallery_items");
     HelperUG::addStyle("unitegallery_styles", "unitegallery_css", "css");
     if (!empty(self::$currentGalleryType)) {
         $pathGalleryScripts = self::$currentGalleryType->getPathScriptsIncludes();
         if (file_exists($pathGalleryScripts)) {
             require $pathGalleryScripts;
         }
     }
     //provider admin always comes to end
     HelperUG::addStyleAbsoluteUrl(GlobalsUG::$url_provider . "assets/provider_admin.css", "provider_admin_css");
     HelperUG::addScriptAbsoluteUrl(GlobalsUG::$url_provider . "assets/provider_admin.js", "provider_admin_js");
 }