Subversion Repositories SmartDukaan

Rev

Rev 13682 | Go to most recent revision | Blame | Compare with Previous | Last modification | View Log | RSS feed

<?php
App::uses('AppController', 'Controller');
/**
 * Stores Controller
 *
 * @property Store $Store
 * @property PaginatorComponent $Paginator
 */
class AboutsController extends AppController {

/**
 * Components
 *
 * @var array
 */
        public $components = array('Paginator');

        public function beforeFilter() {                
                parent::beforeFilter();
                $this->Auth->allow('howitworks');
                $this->layout = 'static';
        }
/**
 * index method
 *
 * @return void
 */
        public function index() {
                
        }
}