コード例 #1
0
 public function __construct($controller, $alias)
 {
     $this->alias = $alias;
     $this->theme = Theme::getEditTheme();
     parent::__construct($controller, []);
     $this->bindToController();
     $this->checkUploadPostback();
 }
コード例 #2
0
ファイル: Search.php プロジェクト: tamboer/LaravelOctober
 /**
  * Constructor.
  */
 public function __construct($controller, $configuration = [])
 {
     parent::__construct($controller, $configuration);
     /*
      * Process configuration
      */
     if (isset($this->config->prompt)) {
         $this->placeholder = trans($this->config->prompt);
     }
     if (isset($this->config->partial)) {
         $this->customPartial = $this->config->partial;
     }
 }
コード例 #3
0
 public function __construct($controller)
 {
     parent::__construct($controller, []);
     $this->bindToController();
     $configFile = 'config_' . snake_case($this->alias) . '.yaml';
     $path = $controller->getConfigPath($configFile);
     if (File::isFile($path)) {
         $config = $this->makeConfig($configFile);
         foreach ($config as $field => $value) {
             if (property_exists($this, $field)) {
                 $this->{$field} = $value;
             }
         }
     }
 }
コード例 #4
0
ファイル: Toolbar.php プロジェクト: 360weboy/october
 /**
  * Constructor.
  */
 public function __construct($controller, $configuration = [])
 {
     parent::__construct($controller, $configuration);
     /*
      * Prepare the search widget (optional)
      */
     if (isset($this->config->search)) {
         if (is_string($this->config->search)) {
             $searchConfig = $this->makeConfig(['partial' => $this->config->search]);
         } else {
             $searchConfig = $this->makeConfig($this->config->search);
         }
         $searchConfig->alias = $this->alias . 'Search';
         $this->searchWidget = $this->makeWidget('Backend\\Widgets\\Search', $searchConfig);
         $this->searchWidget->bindToController();
     }
 }
コード例 #5
0
ファイル: TemplateList.php プロジェクト: nnmer/october
 public function __construct($controller, $alias, callable $dataSource)
 {
     $this->alias = $alias;
     $this->dataSource = $dataSource;
     $this->theme = Theme::getEditTheme();
     parent::__construct($controller, []);
     if (!Request::isXmlHttpRequest()) {
         $this->resetSelection();
     }
     $configFile = 'config_' . snake_case($alias) . '.yaml';
     $config = $this->makeConfig($configFile);
     foreach ($config as $field => $value) {
         if (property_exists($this, $field)) {
             $this->{$field} = $value;
         }
     }
     $this->bindToController();
 }
コード例 #6
0
ファイル: Search.php プロジェクト: nnmer/october
 /**
  * Constructor.
  */
 public function __construct($controller, $configuration = [])
 {
     parent::__construct($controller, $configuration);
     /*
      * Process configuration
      */
     if (isset($this->config->prompt)) {
         $this->placeholder = trans($this->config->prompt);
     }
     if (isset($this->config->partial)) {
         $this->customPartial = $this->config->partial;
     }
     if (isset($this->config->growable)) {
         $this->growable = $this->config->growable;
     }
     /*
      * Add CSS class styles
      */
     $this->cssClasses[] = 'icon search';
     if ($this->growable) {
         $this->cssClasses[] = 'growable';
     }
 }
コード例 #7
0
 public function __construct($controller, $alias)
 {
     $this->alias = $alias;
     parent::__construct($controller, []);
     $this->bindToController();
 }
コード例 #8
0
ファイル: MediaManager.php プロジェクト: GoldBest/october
 public function __construct($controller, $alias)
 {
     $this->alias = $alias;
     parent::__construct($controller, []);
     $this->checkUploadPostback();
 }
コード例 #9
0
ファイル: PageList.php プロジェクト: rainlab/pages-plugin
 protected function putSession($key, $value)
 {
     return parent::putSession($this->getThemeSessionKey($key), $value);
 }
コード例 #10
0
ファイル: Form.php プロジェクト: janusnic/23copperleaf
 /**
  * Ensure fields are defined and form widgets are registered so they can
  * also be bound to the controller this allows their AJAX features to
  * operate.
  * @return void
  */
 public function bindToController()
 {
     $this->defineFormFields();
     parent::bindToController();
 }
コード例 #11
0
 /**
  * Returns a unique ID for this widget. Useful in creating HTML markup.
  */
 public function getId($suffix = null)
 {
     $id = parent::getId($suffix);
     $id .= '-' . $this->fieldName;
     return Str::evalHtmlId($id);
 }
コード例 #12
0
ファイル: ReportContainer.php プロジェクト: idxos/portfolio
 /**
  * Ensure report widgets are registered so they can also be bound to 
  * the controller this allows their AJAX features to operate.
  * @return void
  */
 public function bindToController()
 {
     $this->defineReportWidgets();
     parent::bindToController();
 }
コード例 #13
0
ファイル: FormWidgetBase.php プロジェクト: GoldBest/october
 /**
  * Returns a unique ID for this widget. Useful in creating HTML markup.
  */
 public function getId($suffix = null)
 {
     $id = parent::getId($suffix);
     $id .= '-' . $this->fieldName;
     return HtmlHelper::nameToId($id);
 }