Gentics Portal.Node PHP API
 All Classes Namespaces Functions Variables Pages
ShoppingcartController.php
1 <?php
2 /**
3  * Gentics Portal.Node PHP
4  * Author & Copyright (c) by Gentics Software GmbH
5  * sales@gentics.com
6  * http://www.gentics.com
7  * Licenses can be found in the LICENSE.txt file in the root-folder of this installation
8  * You must not use this software without a valid license agreement.
9  *
10  * Shoppingcart controller class file.
11  */
13 {
14  /**
15  * Returns a list of external action classes.
16  *
17  * @return array
18  */
19 
20 
21  public function actions(){
22  return array(
23  'captcha'=>array(
24  'class'=>'CCaptchaAction',
25  'fixedVerifyCode' => YII_DEBUG ? 'polomo' : null
26  ),
27  );
28  }
29 }