コード例 #1
0
ファイル: ComingSoon.php プロジェクト: kirkbauer2/kirkxc
 /**
  * Return list of targets allowed for this widget
  *
  * @return array
  */
 public static function getAllowedTargets()
 {
     $result = parent::getAllowedTargets();
     $result[] = 'main';
     $result[] = 'category';
     return $result;
 }
コード例 #2
0
ファイル: ComingSoonPage.php プロジェクト: kirkbauer2/kirkxc
 /**
  * Return list of targets allowed for this widget
  *
  * @return array
  */
 public static function getAllowedTargets()
 {
     $result = parent::getAllowedTargets();
     $result[] = self::WIDGET_TARGET_COMING_SOON;
     return $result;
 }