コード例 #1
0
ファイル: Settings.php プロジェクト: kirkbauer2/kirkxc
 /**
  * Return list of allowed targets
  *
  * @return array
  */
 public static function getAllowedTargets()
 {
     $list = parent::getAllowedTargets();
     $list[] = 'paypal_settings';
     $list[] = 'paypal_credit';
     return $list;
 }
コード例 #2
0
ファイル: Subcategories.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;
 }
コード例 #3
0
ファイル: States.php プロジェクト: kingsj/core
 /**
  * Return list of targets allowed for this widget
  *
  * @return array
  */
 public static function getAllowedTargets()
 {
     $result = parent::getAllowedTargets();
     $result[] = 'states';
     return $result;
 }
コード例 #4
0
ファイル: RecentLogin.php プロジェクト: kirkbauer2/kirkxc
 /**
  * Return list of allowed targets
  *
  * @return array
  */
 public static function getAllowedTargets()
 {
     return array_merge(parent::getAllowedTargets(), array('recent_login'));
 }
コード例 #5
0
ファイル: Role.php プロジェクト: kirkbauer2/kirkxc
 /**
  * Return list of allowed targets
  *
  * @return array
  */
 public static function getAllowedTargets()
 {
     $list = parent::getAllowedTargets();
     $list[] = 'role';
     return $list;
 }
コード例 #6
0
 /**
  * Return list of allowed targets
  *
  * @return array
  */
 public static function getAllowedTargets()
 {
     $list = parent::getAllowedTargets();
     $list[] = 'activate_free_license';
     return $list;
 }
コード例 #7
0
ファイル: SafeMode.php プロジェクト: kewaunited/xcart
 /**
  * Return list of allowed targets
  *
  * @return array
  */
 public static function getAllowedTargets()
 {
     return array_merge(parent::getAllowedTargets(), array('safe_mode'));
 }
コード例 #8
0
 /**
  * Return list of allowed targets
  *
  * @return array
  */
 public static function getAllowedTargets()
 {
     $list = parent::getAllowedTargets();
     $list[] = 'moneybookers_settings';
     return $list;
 }
コード例 #9
0
ファイル: Fields.php プロジェクト: kirkbauer2/kirkxc
 /**
  * Return list of allowed targets
  *
  * @return array
  */
 public static function getAllowedTargets()
 {
     $list = parent::getAllowedTargets();
     $list[] = 'address_fields';
     return $list;
 }
コード例 #10
0
ファイル: Add2Cart.php プロジェクト: kewaunited/xcart
 /**
  * Return list of allowed targets
  *
  * @return array
  */
 public static function getAllowedTargets()
 {
     $list = parent::getAllowedTargets();
     $list[] = 'add2_cart_popup';
     return $list;
 }
コード例 #11
0
ファイル: Method.php プロジェクト: kingsj/core
 /**
  * Return list of targets allowed for this widget
  *
  * @return array
  */
 public static function getAllowedTargets()
 {
     $result = parent::getAllowedTargets();
     $result[] = 'payment_method';
     return $result;
 }
コード例 #12
0
ファイル: SavedCards.php プロジェクト: kirkbauer2/kirkxc
 /**
  * Return list of allowed targets
  *
  * @return array
  */
 public static function getAllowedTargets()
 {
     return array_merge(parent::getAllowedTargets(), array('saved_cards'));
 }
コード例 #13
0
ファイル: ProductReviews.php プロジェクト: kirkbauer2/kirkxc
 /**
  * Return list of targets allowed for this widget
  *
  * @return array
  */
 public static function getAllowedTargets()
 {
     $result = parent::getAllowedTargets();
     $result[] = 'product_reviews';
     return $result;
 }
コード例 #14
0
 public static function getAllowedTargets()
 {
     return array_merge(parent::getAllowedTargets(), array('securesubmit_credit_cards'));
 }
コード例 #15
0
ファイル: AddNewCard.php プロジェクト: kewaunited/xcart
 /**
  * Return list of allowed targets
  *
  * @return array
  */
 public static function getAllowedTargets()
 {
     return array_merge(parent::getAllowedTargets(), array('add_new_card'));
 }
コード例 #16
0
ファイル: Admin.php プロジェクト: kirkbauer2/kirkxc
 /**
  * Return list of targets allowed for this widget
  *
  * @return array
  */
 public static function getAllowedTargets()
 {
     $result = parent::getAllowedTargets();
     $result[] = 'add2_cart_popup';
     return $result;
 }