コード例 #1
0
ファイル: Category.php プロジェクト: kirkbauer2/kirkxc
 /**
  * Return list of targets allowed for this widget
  *
  * @return array
  */
 public static function getAllowedTargets()
 {
     $result = parent::getAllowedTargets();
     $result[] = 'category';
     $result[] = 'main';
     return $result;
 }
コード例 #2
0
ファイル: TaxBanner.php プロジェクト: kirkbauer2/kirkxc
 /**
  * Return list of targets allowed for this widget
  *
  * @return array
  */
 public static function getAllowedTargets()
 {
     $result = parent::getAllowedTargets();
     $result[] = 'tax_classes';
     $result[] = 'sales_tax';
     $result[] = 'vat_tax';
     return $result;
 }
コード例 #3
0
 /**
  * Return list of allowed targets
  *
  * @return array
  */
 public static function getAllowedTargets()
 {
     $list = parent::getAllowedTargets();
     $list[] = 'widgets_collection';
     return $list;
 }
コード例 #4
0
ファイル: Login.php プロジェクト: kingsj/core
 /**
  * Return list of targets allowed for this widget
  *
  * @return array
  */
 public static function getAllowedTargets()
 {
     $result = parent::getAllowedTargets();
     $result[] = 'login';
     return $result;
 }
コード例 #5
0
 /**
  * Return list of allowed targets
  *
  * @return array
  */
 public static function getAllowedTargets()
 {
     $result = parent::getAllowedTargets();
     $result[] = 'shipping_methods';
     return $result;
 }
コード例 #6
0
ファイル: Profiles.php プロジェクト: kirkbauer2/kirkxc
 /**
  * Return list of allowed targets
  *
  * @return array
  */
 public static function getAllowedTargets()
 {
     return array_merge(parent::getAllowedTargets(), array('profile_list'));
 }
コード例 #7
0
ファイル: AttributeOption.php プロジェクト: kirkbauer2/kirkxc
 /**
  * Return list of allowed targets
  *
  * @return array
  */
 public static function getAllowedTargets()
 {
     return array_merge(parent::getAllowedTargets(), array('attribute_option'));
 }
コード例 #8
0
ファイル: CheckoutSuccess.php プロジェクト: kingsj/core
 /**
  * Return list of allowed targets
  *
  * @return array
  */
 public static function getAllowedTargets()
 {
     $list = parent::getAllowedTargets();
     $list[] = 'checkoutSuccess';
     return $list;
 }
コード例 #9
0
 /**
  * Return list of allowed targets
  *
  * @return array
  */
 public static function getAllowedTargets()
 {
     return array_merge(parent::getAllowedTargets(), array('payment_transactions'));
 }
コード例 #10
0
 /**
  * Return list of allowed targets
  *
  * @return array
  */
 public static function getAllowedTargets()
 {
     return array_merge(parent::getAllowedTargets(), array('category', 'categories', 'category_products'));
 }
コード例 #11
0
ファイル: Modify.php プロジェクト: kirkbauer2/kirkxc
 /**
  * Return list of targets allowed for this widget
  *
  * @return array
  */
 public static function getAllowedTargets()
 {
     $result = parent::getAllowedTargets();
     $result[] = 'address_book';
     return $result;
 }
コード例 #12
0
ファイル: Search.php プロジェクト: kingsj/core
 /**
  * Return list of targets allowed for this widget
  *
  * @return array
  */
 public static function getAllowedTargets()
 {
     $result = parent::getAllowedTargets();
     $result[] = 'order_list';
     return $result;
 }
コード例 #13
0
ファイル: Reviews.php プロジェクト: kirkbauer2/kirkxc
 /**
  * Return list of allowed targets
  *
  * @return array
  */
 public static function getAllowedTargets()
 {
     return array_merge(parent::getAllowedTargets(), array('reviews'));
 }
コード例 #14
0
ファイル: Promotions.php プロジェクト: kirkbauer2/kirkxc
 /**
  * Return list of allowed targets
  *
  * @return array
  */
 public static function getAllowedTargets()
 {
     $list = parent::getAllowedTargets();
     $list[] = 'promotions';
     return $list;
 }
コード例 #15
0
ファイル: Notification.php プロジェクト: kirkbauer2/kirkxc
 /**
  * Return list of allowed targets
  *
  * @return array
  */
 public static function getAllowedTargets()
 {
     return array_merge(parent::getAllowedTargets(), array('notification'));
 }
コード例 #16
0
ファイル: Export.php プロジェクト: kewaunited/xcart
 /**
  * Return list of allowed targets
  *
  * @return array
  */
 public static function getAllowedTargets()
 {
     $list = parent::getAllowedTargets();
     $list[] = 'export';
     return $list;
 }
コード例 #17
0
ファイル: NewsMessages.php プロジェクト: kirkbauer2/kirkxc
 /**
  * Return list of allowed targets
  *
  * @return array
  */
 public static function getAllowedTargets()
 {
     return array_merge(parent::getAllowedTargets(), array('news_messages'));
 }
コード例 #18
0
ファイル: AccessDenied.php プロジェクト: kewaunited/xcart
 /**
  * Return list of allowed targets
  *
  * @return array
  */
 public static function getAllowedTargets()
 {
     $list = parent::getAllowedTargets();
     $list[] = 'access_denied';
     return $list;
 }
コード例 #19
0
 /**
  * Return list of allowed targets
  *
  * @return array
  */
 public static function getAllowedTargets()
 {
     $list = parent::getAllowedTargets();
     $list[] = 'product_variant';
     return $list;
 }
コード例 #20
0
ファイル: ProductClass.php プロジェクト: kirkbauer2/kirkxc
 /**
  * Return list of allowed targets
  *
  * @return array
  */
 public static function getAllowedTargets()
 {
     return array_merge(parent::getAllowedTargets(), array('product_class'));
 }
コード例 #21
0
ファイル: XpcPopup.php プロジェクト: kirkbauer2/kirkxc
 /**
  * Return list of allowed targets
  *
  * @return array
  */
 public static function getAllowedTargets()
 {
     return array_merge(parent::getAllowedTargets(), array('xpc_popup'));
 }
コード例 #22
0
ファイル: Iframe.php プロジェクト: kingsj/core
 /**
  * Return list of allowed targets
  *
  * @return array
  */
 public static function getAllowedTargets()
 {
     $targets = parent::getAllowedTargets();
     $targets[] = 'checkoutPayment';
     return $targets;
 }
コード例 #23
0
ファイル: PageNotFound.php プロジェクト: kirkbauer2/kirkxc
 /**
  * Return list of targets allowed for this widget
  *
  * @return array
  */
 public static function getAllowedTargets()
 {
     $result = parent::getAllowedTargets();
     $result[] = \XLite::TARGET_404;
     return $result;
 }
コード例 #24
0
ファイル: ContactUs.php プロジェクト: kingsj/core
 /**
  * Return list of allowed targets
  *
  * @return array
  */
 public static function getAllowedTargets()
 {
     return array_merge(parent::getAllowedTargets(), array('contact_us'));
 }
コード例 #25
0
ファイル: ReturnProducts.php プロジェクト: kirkbauer2/kirkxc
 /**
  * Return list of allowed targets
  *
  * @return array
  */
 public static function getAllowedTargets()
 {
     $result = parent::getAllowedTargets();
     $result[] = 'capost_returns';
     return $result;
 }
コード例 #26
0
ファイル: ProductsReturn.php プロジェクト: kirkbauer2/kirkxc
 /**
  * Return list of allowed targets
  *
  * @return array
  */
 public static function getAllowedTargets()
 {
     return array_merge(parent::getAllowedTargets(), array('capost_return'));
 }
コード例 #27
0
ファイル: Recent.php プロジェクト: kirkbauer2/kirkxc
 /**
  * Return list of targets allowed for this widget
  *
  * @return array
  */
 public static function getAllowedTargets()
 {
     $result = parent::getAllowedTargets();
     $result[] = 'recent_orders';
     return $result;
 }
コード例 #28
0
ファイル: PopupAddInfo.php プロジェクト: kirkbauer2/kirkxc
 /**
  * Return list of allowed targets
  *
  * @return array
  */
 public static function getAllowedTargets()
 {
     return array_merge(parent::getAllowedTargets(), array('popup_add_info'));
 }
コード例 #29
0
 /**
  * Return list of allowed targets
  *
  * @return array
  */
 public static function getAllowedTargets()
 {
     $list = parent::getAllowedTargets();
     $list[] = 'payment_method_selection';
     return $list;
 }
コード例 #30
0
ファイル: Accounting.php プロジェクト: kirkbauer2/kirkxc
 /**
  * Return list of allowed targets
  *
  * @return array
  */
 public static function getAllowedTargets()
 {
     return array_merge(parent::getAllowedTargets(), array('accounting'));
 }