AloFramework documentation
  • Namespace
  • Class
  • Tree
  • Deprecated
  • Todo
  • Download

Namespaces

  • Alo
    • Cache
    • CLI
    • Controller
    • Db
    • Exception
    • FileSystem
    • Session
    • Statics
    • Test
    • Validators
    • Windows
  • Controller
  • None
  • PHP

Classes

  • Cart
  • Sample
  • SampleErrorController
 1 <?php
 2 
 3    namespace Controller;
 4 
 5    use Alo\Controller\AbstractController;
 6 
 7    /**
 8     * A sample controller within a subdirectory
 9     *
10     * @author Art <a.molcanovas@gmail.com>
11     */
12    class Cart extends AbstractController {
13 
14       /**
15        * An example of a controller within a subdirectory
16        *
17        * @author Art <a.molcanovas@gmail.com>
18        */
19       function checkout() {
20          echo 'checking out!';
21       }
22    }
AloFramework documentation API documentation generated by ApiGen 2.8.0