Gentics Portal.Node PHP API
 All Classes Namespaces Functions Variables Pages
ShoppingCartNavigateWidget.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  * Widget for view navigate panel
11  */
13 {
14  /**
15  * @var integer the total steps count
16  */
17  public $stepsCount;
18  /**
19  * @var integer the number of current step
20  */
21  public $step;
22  /**
23  * Override base init. For skipping scripts and css init.
24  *
25  * @return void
26  */
27  public function init()
28  {
29 
30  }
31  /**
32  * Render ShoppingCartNavigateWidget view
33  *
34  * @return void
35  */
36  public function run()
37  {
38  $this->render('ShoppingCartNavigateWidget', array('stepsCount'=>$this->stepsCount,'step'=>$this->step));
39  }
40 }
41