コード例 #1
0
ファイル: ImportAbstract.php プロジェクト: kewaunited/xcart
 /**
  * Define the actions with no secure token
  *
  * @return array
  */
 public static function defineFreeFormIdActions()
 {
     $list = parent::defineFreeFormIdActions();
     $list[] = 'cancel';
     $list[] = 'proceed';
     return $list;
 }
コード例 #2
0
 /**
  * Define the actions with no secure token
  *
  * @return array
  */
 public static function defineFreeFormIdActions()
 {
     $list = parent::defineFreeFormIdActions();
     $list[] = 'test';
     $list[] = 'switch';
     return $list;
 }
コード例 #3
0
ファイル: ShippingSettings.php プロジェクト: kewaunited/xcart
 /**
  * Define the actions with no secure token
  *
  * @return array
  */
 public static function defineFreeFormIdActions()
 {
     return array_merge(parent::defineFreeFormIdActions(), array('test'));
 }
コード例 #4
0
ファイル: AddonInstall.php プロジェクト: kirkbauer2/kirkxc
 /**
  * Define the actions with no secure token
  *
  * @return array
  */
 public static function defineFreeFormIdActions()
 {
     return array_merge(parent::defineFreeFormIdActions(), array('view_license', 'select_installation_type', 'warnings'));
 }
コード例 #5
0
 /**
  * Define the actions with no secure token
  *
  * @return array
  */
 public static function defineFreeFormIdActions()
 {
     return array_merge(parent::defineFreeFormIdActions(), array('export_finished'));
 }
コード例 #6
0
ファイル: Settings.php プロジェクト: kewaunited/xcart
 /**
  * Define the actions with no secure token
  *
  * @return array
  */
 public static function defineFreeFormIdActions()
 {
     return array_merge(parent::defineFreeFormIdActions(), array('phpinfo', 'switch_clean_url'));
 }
コード例 #7
0
ファイル: Profile.php プロジェクト: kirkbauer2/kirkxc
 /**
  * Define the actions with no secure token
  *
  * @return array
  */
 public static function defineFreeFormIdActions()
 {
     return array_merge(parent::defineFreeFormIdActions(), array('finishOperateAs'));
 }
コード例 #8
0
ファイル: Export.php プロジェクト: kewaunited/xcart
 /**
  * Define the actions with no secure token
  *
  * @return array
  */
 public static function defineFreeFormIdActions()
 {
     return array_merge(parent::defineFreeFormIdActions(), array('pack', 'download'));
 }
コード例 #9
0
ファイル: Order.php プロジェクト: kewaunited/xcart
 /**
  * Define the actions with no secure token
  *
  * @return array
  */
 public static function defineFreeFormIdActions()
 {
     return array_merge(parent::defineFreeFormIdActions(), array('calculate_price', 'updateStaffNote', 'recalculate_shipping'));
 }
コード例 #10
0
ファイル: Layout.php プロジェクト: kirkbauer2/kirkxc
 /**
  * Define the actions with no secure token
  *
  * @return array
  */
 public static function defineFreeFormIdActions()
 {
     $list = parent::defineFreeFormIdActions();
     $list[] = 'change_layout';
     return $list;
 }
コード例 #11
0
ファイル: Parcel.php プロジェクト: kirkbauer2/kirkxc
 public static function defineFreeFormIdActions()
 {
     return array_merge(parent::defineFreeFormIdActions(), array('get_available_count', 'create_asn', 'draw_barcode'));
 }
コード例 #12
0
ファイル: Main.php プロジェクト: kirkbauer2/kirkxc
 /**
  * Define the actions with no secure token
  *
  * @return array
  */
 public static function defineFreeFormIdActions()
 {
     return array_merge(parent::defineFreeFormIdActions(), array('hide_welcome_block', 'hide_welcome_block_forever', 'set_notifications_as_read', 'close_module_banner'));
 }