コード例 #1
0
ファイル: TestExample.php プロジェクト: aWEBoLabs/taxi
 /**
  * {@inheritdoc}
  */
 public function defineOptions()
 {
     $options = parent::defineOptions();
     $options['string'] = array('default' => '');
     $options['custom_access'] = array('default' => TRUE);
     return $options;
 }
コード例 #2
0
 /**
  * {@inheritdoc}
  */
 protected function defineOptions()
 {
     $options = parent::defineOptions();
     $options['view_to_insert'] = array('default' => '');
     $options['inherit_arguments'] = array('default' => FALSE);
     return $options;
 }
コード例 #3
0
ファイル: HTTPStatusCode.php プロジェクト: nstielau/drops-8
 /**
  * {@inheritdoc}
  */
 protected function defineOptions()
 {
     $options = parent::defineOptions();
     $options['status_code'] = array('default' => 200);
     return $options;
 }
コード例 #4
0
ファイル: Result.php プロジェクト: alnutile/drunatra
 /**
  * {@inheritdoc}
  */
 protected function defineOptions()
 {
     $options = parent::defineOptions();
     $options['content'] = array('default' => 'Displaying @start - @end of @total', 'translatable' => TRUE);
     return $options;
 }
コード例 #5
0
ファイル: Result.php プロジェクト: nstielau/drops-8
 /**
  * {@inheritdoc}
  */
 protected function defineOptions()
 {
     $options = parent::defineOptions();
     $options['content'] = array('default' => $this->t('Displaying @start - @end of @total'));
     return $options;
 }
コード例 #6
0
ファイル: Title.php プロジェクト: alnutile/drunatra
 /**
  * {@inheritdoc}
  */
 protected function defineOptions()
 {
     $options = parent::defineOptions();
     $options['title'] = array('default' => '', 'translatable' => TRUE);
     return $options;
 }
コード例 #7
0
ファイル: Title.php プロジェクト: nstielau/drops-8
 /**
  * {@inheritdoc}
  */
 protected function defineOptions()
 {
     $options = parent::defineOptions();
     $options['title'] = array('default' => '');
     return $options;
 }
コード例 #8
0
 /**
  * {@inheritdoc}
  */
 protected function defineOptions()
 {
     $options = parent::defineOptions();
     $options['tokenize'] = array('default' => FALSE);
     return $options;
 }
コード例 #9
0
ファイル: Delta9Links.php プロジェクト: delta-9/delta9
 /**
  * {@inheritdoc}
  */
 protected function defineOptions()
 {
     $options = parent::defineOptions();
     return $options;
 }