public function __construct()
 {
     parent::__construct();
     //        BackendMenu::setContext('CheerfulLab.Frontendspelling', 'frontendspelling', 'spellingrequests');
     BackendMenu::setContext('CheerfulLab.FrontendSpelling', 'spelling', 'requests');
     //        BackendMenu::setContext('RainLab.Blog', 'blog', 'posts');
 }
Beispiel #2
0
 /**
  * {@inheritdoc}
  */
 public function __construct()
 {
     parent::__construct();
     BackendMenu::setContext('Adrenth.Redirect', 'redirect', $this->action);
     $this->requiredPermissions = ['adrenth.redirect.access_redirects'];
     $this->vars['match'] = null;
 }
Beispiel #3
0
 /**
  * Constructor
  */
 public function __construct()
 {
     parent::__construct();
     $this->addJs('/plugins/renatio/backupmanager/assets/js/backup.js');
     BackendMenu::setContext('Renatio.BackupManager', 'backupmanager', 'backups');
     SettingsManager::setContext('Renatio.BackupManager', 'settings');
 }
Beispiel #4
0
 public function __construct()
 {
     parent::__construct();
     BackendMenu::setContext('Feegleweb.OctoshopLite', 'shop', 'products');
     $this->addCss($this->assetsPath . '/css/modal-form.css');
     $this->addJs($this->assetsPath . '/js/product-form.js');
 }
Beispiel #5
0
 public function __construct()
 {
     parent::__construct();
     BackendMenu::setContext('October.System', 'system', 'settings');
     SettingsManager::setContext('Responsiv.Pay', 'types');
     GatewayManager::createPartials();
 }
Beispiel #6
0
 public function __construct()
 {
     parent::__construct();
     $this->addCss('/modules/system/assets/css/updates.css', 'core');
     BackendMenu::setContext('October.System', 'system', 'updates');
     SettingsManager::setContext('October.System', 'updates');
 }
Beispiel #7
0
 /**
  * Constructor.
  */
 public function __construct()
 {
     parent::__construct();
     BackendMenu::setContext('October.Cms', 'cms', true);
     try {
         if (!($theme = Theme::getEditTheme())) {
             throw new ApplicationException(Lang::get('cms::lang.theme.edit.not_found'));
         }
         $this->theme = $theme;
         new TemplateList($this, 'pageList', function () use($theme) {
             return Page::listInTheme($theme, true);
         });
         new TemplateList($this, 'partialList', function () use($theme) {
             return Partial::listInTheme($theme, true);
         });
         new TemplateList($this, 'layoutList', function () use($theme) {
             return Layout::listInTheme($theme, true);
         });
         new TemplateList($this, 'contentList', function () use($theme) {
             return Content::listInTheme($theme, true);
         });
         new ComponentList($this, 'componentList');
         new AssetList($this, 'assetList');
     } catch (Exception $ex) {
         $this->handleError($ex);
     }
 }
Beispiel #8
0
 public function __construct()
 {
     parent::__construct();
     $this->pageTitle = 'xeor.yandexservicesauth::lang.settings.menu_label';
     BackendMenu::setContext('October.System', 'system', 'settings');
     SettingsManager::setContext('Xeor.YandexServicesAuth', 'settings');
 }
Beispiel #9
0
 public function __construct()
 {
     parent::__construct();
     BackendMenu::setContext('AWME.Stocket', 'stocket', 'products');
     $this->addCss($this->assetsPath . '/css/modal-form.css');
     $this->addJs($this->assetsPath . '/js/product-form.js');
 }
Beispiel #10
0
 public function __construct()
 {
     parent::__construct();
     BackendMenu::setContext('Bm.Field', 'template', 'template');
     $this->addJs('/modules/backend/assets/js/october.treeview.js', 'core');
     $this->bodyClass = '';
 }
Beispiel #11
0
 public function __construct()
 {
     parent::__construct();
     BackendMenu::setContext('RAFIE.ContactForm', 'contactform', 'forms');
     $this->addCss('/plugins/rafie/contactform/assets/css/backend_formcontrol.css');
     $this->addJs('/plugins/rafie/contactform/assets/js/backend_formcontrol.js');
 }
 /**
  * Ensure that by default our edit menu sidebar is active
  */
 public function __construct()
 {
     parent::__construct();
     BackendMenu::setContext('BenFreke.MenuManager', 'menumanager', 'edit');
     // Add my assets
     $this->addJs('/plugins/benfreke/menumanager/assets/js/benfreke.menumanager.js');
 }
Beispiel #13
0
 public function __construct()
 {
     parent::__construct();
     BackendMenu::setContext('Leancode.Campaign', 'campaign', 'lists');
     //		$sql =	"insert INTO leancode_campaign_failed_deliveries SET email = 'abc' ";
     //	    $results =	DB::statement( DB::raw($sql) );
 }
 public function __construct()
 {
     parent::__construct();
     BackendMenu::setContext('October.System', 'system', 'settings');
     SettingsManager::setContext('Responsiv.Currency', 'currencies');
     $this->addJs('/plugins/responsiv/currency/assets/js/currency-list.js');
 }
Beispiel #15
0
 /**
  * Class constructor
  */
 public function __construct()
 {
     parent::__construct();
     BackendMenu::setContext('October.System', 'system', 'config');
     SettingsManager::setContext('KoderHut.TemplateTokens', 'token_config');
     $this->addJs('/plugins/koderhut/templatetokens/assets/js/templatetokens.js');
 }
Beispiel #16
0
 public function boot()
 {
     Event::listen('backend.form.extendFields', function ($form) {
         if ($form->model instanceof Backend\Models\BackendPreferences) {
             $form->addFields(['focus_searchfield' => ['label' => 'indikator.backend::lang.settings.search_label', 'type' => 'switch', 'span' => 'left', 'default' => 'false', 'comment' => 'indikator.backend::lang.settings.search_comment'], 'sidebar_description' => ['label' => 'indikator.backend::lang.settings.sidebar_label', 'type' => 'switch', 'span' => 'right', 'default' => 'false', 'comment' => 'indikator.backend::lang.settings.sidebar_comment'], 'rounded_avatar' => ['label' => 'indikator.backend::lang.settings.avatar_label', 'type' => 'switch', 'span' => 'left', 'default' => 'false', 'comment' => 'indikator.backend::lang.settings.avatar_comment'], 'virtual_keyboard' => ['label' => 'indikator.backend::lang.settings.keyboard_label', 'type' => 'switch', 'span' => 'right', 'default' => 'false', 'comment' => 'indikator.backend::lang.settings.keyboard_comment'], 'media_menu' => ['label' => 'indikator.backend::lang.settings.media_label', 'type' => 'switch', 'span' => 'left', 'default' => 'false', 'comment' => 'indikator.backend::lang.settings.media_comment'], 'more_themes' => ['label' => 'indikator.backend::lang.settings.themes_label', 'type' => 'switch', 'span' => 'right', 'default' => 'false', 'comment' => 'indikator.backend::lang.settings.themes_comment']]);
         }
     });
     BackendController::extend(function ($controller) {
         if (BackendAuth::check()) {
             $preferences = UserPreferences::forUser()->get('backend::backend.preferences');
             if (isset($preferences['focus_searchfield']) && $preferences['focus_searchfield']) {
                 $controller->addJs('/plugins/indikator/backend/assets/js/setting-search.js');
             }
             if (isset($preferences['rounded_avatar']) && $preferences['rounded_avatar']) {
                 $controller->addCss('/plugins/indikator/backend/assets/css/rounded-avatar.css');
             }
             if (isset($preferences['virtual_keyboard']) && $preferences['virtual_keyboard']) {
                 $controller->addCss('/plugins/indikator/backend/assets/css/ml-keyboard.css');
                 $controller->addJs('/plugins/indikator/backend/assets/js/ml-keyboard.js');
             }
             if (isset($preferences['media_menu']) && $preferences['media_menu']) {
                 $controller->addCss('/plugins/indikator/backend/assets/css/media-menu.css');
             }
             if (isset($preferences['more_themes']) && $preferences['more_themes']) {
                 $controller->addJs('/plugins/indikator/backend/assets/js/setting-theme.js');
             }
         }
     });
     BackendMenu::registerContextSidenavPartial('October.System', 'system', '~/plugins/indikator/backend/partials/_system_sidebar.htm');
 }
Beispiel #17
0
 public function __construct()
 {
     parent::__construct();
     BackendMenu::setContext('October.System', 'system', 'settings');
     SettingsManager::setContext('RainLab.Translate', 'locales');
     $this->addJs('/plugins/rainlab/translate/assets/js/locales.js');
 }
Beispiel #18
0
 /**
  * Discounts Constructor
  */
 public function __construct()
 {
     parent::__construct();
     BackendMenu::setContext('Bedard.Shop', 'shop', 'discounts');
     $this->addCss('/plugins/bedard/shop/assets/css/backend.css');
     $this->addCss('/plugins/bedard/shop/assets/css/tooltip.css');
 }
Beispiel #19
0
 /**
  * Constructor.
  */
 public function __construct()
 {
     parent::__construct();
     BackendMenu::setContext('RainLab.Pages', 'pages', 'pages');
     try {
         if (!($this->theme = Theme::getEditTheme())) {
             throw new ApplicationException(Lang::get('cms::lang.theme.edit.not_found'));
         }
         new PageList($this, 'pageList');
         new MenuList($this, 'menuList');
         new SnippetList($this, 'snippetList');
         $theme = $this->theme;
         new TemplateList($this, 'contentList', function () use($theme) {
             return Content::listInTheme($theme, true);
         });
     } catch (Exception $ex) {
         $this->handleError($ex);
     }
     $this->addJs('/modules/backend/assets/js/october.treeview.js', 'core');
     $this->addJs('/plugins/rainlab/pages/assets/js/pages-page.js');
     $this->addJs('/plugins/rainlab/pages/assets/js/pages-snippets.js');
     $this->addCss('/plugins/rainlab/pages/assets/css/pages.css');
     // Preload the code editor class as it could be needed
     // before it loads dynamically.
     $this->addJs('/modules/backend/formwidgets/codeeditor/assets/js/codeeditor.js', 'core');
     $this->bodyClass = 'compact-container side-panel-not-fixed';
     $this->pageTitle = 'rainlab.pages::lang.plugin.name';
     $this->pageTitleTemplate = '%s Pages';
 }
Beispiel #20
0
 public function __construct()
 {
     parent::__construct();
     BackendMenu::setContext('OctoDevel.OctoMail', 'octomail', 'templates');
     $this->addCss('/plugins/octodevel/octomail/assets/css/octodevel.octomail-form.css');
     $this->addJs('/plugins/octodevel/octomail/assets/js/octodevel.octomail-form.js');
 }
 public function __construct()
 {
     parent::__construct();
     $this->addJs('/plugins/stone/testimonials/assets/js/testimonial.js');
     $this->addCss('/plugins/stone/testimonials/assets/css/testimonial.css');
     BackendMenu::setContext('Stone.Testimonials', 'testimonials', 'testimonial');
 }
Beispiel #22
0
 /**
  * Constructor.
  */
 public function __construct()
 {
     parent::__construct();
     BackendMenu::setContext('October.Cms', 'media', true);
     $this->pageTitle = 'cms::lang.media.menu_label';
     $manager = new MediaManager($this, 'manager');
     $manager->bindToController();
 }
Beispiel #23
0
 /**
  * Constructor.
  */
 public function __construct()
 {
     parent::__construct();
     BackendMenu::setContextOwner('October.Backend');
     if (BackendAuth::check()) {
         new ReportContainer($this);
     }
 }
Beispiel #24
0
 /**
  * Constructor.
  */
 public function __construct()
 {
     parent::__construct();
     $this->addCss('/modules/cms/assets/css/october.theme-selector.css', 'core');
     $this->pageTitle = 'cms::lang.theme.settings_menu';
     BackendMenu::setContext('October.System', 'system', 'settings');
     SettingsManager::setContext('October.Cms', 'theme');
 }
Beispiel #25
0
 public function __construct()
 {
     parent::__construct();
     BackendMenu::setContext('JorgeAndrade.Subscribe', 'subscribe', 'subscribers');
     $this->addJs('/plugins/jorgeandrade/subscribe/assets/javascript/tableExport.js');
     $this->addJs('/plugins/jorgeandrade/subscribe/assets/javascript/jquery.base64.js');
     $this->addJs('/plugins/jorgeandrade/subscribe/assets/javascript/subscribe-backend-scripts.js');
 }
Beispiel #26
0
 public function __construct()
 {
     if (post('comment_mode')) {
         $this->formConfig = 'config_comment_form.yaml';
     }
     parent::__construct();
     BackendMenu::setContext('October.Test', 'test', 'posts');
 }
Beispiel #27
0
 public function __construct()
 {
     if (post('ticket_mode')) {
         $this->formConfig = 'config_ticket_form.yaml';
     }
     parent::__construct();
     BackendMenu::setContext('Beysong.Events', 'events', 'events');
 }
 public function __construct()
 {
     parent::__construct();
     BackendMenu::setContext('JorgeAndrade.Events', 'events', 'events');
     $this->addJs('http://maps.google.com/maps/api/js?sensor=false&language=en');
     $this->addJs('/plugins/jorgeandrade/events/assets/js/gmap3.min.js');
     $this->addJs('/plugins/jorgeandrade/events/assets/js/events.location.js');
 }
Beispiel #29
0
 public function __construct()
 {
     parent::__construct();
     BackendMenu::setContext('October.System', 'system', 'settings');
     SettingsManager::setContext('RainLab.Sitemap', 'definitions');
     $this->addJs('/modules/backend/assets/js/october.treeview.js', 'core');
     $this->addJs('/plugins/rainlab/sitemap/assets/js/sitemap-definitions.js');
 }
Beispiel #30
0
 /**
  * Products Constructor
  */
 public function __construct()
 {
     parent::__construct();
     BackendMenu::setContext('Bedard.Shop', 'shop', 'customers');
     $this->addCss('/plugins/bedard/shop/assets/css/backend.css');
     // Load currency
     $this->vars['currency'] = PaySettings::get('currency_symbol');
 }