Overview

Namespaces

  • App
    • Components
    • Interfaces
    • Lib
      • Files
      • Forms
        • Controls
      • Html
      • Repair
      • Statics
    • Model
    • Modules
      • BaseModule
        • Presenters
      • PartnersModule
        • Presenters
      • ProductModule
        • Presenters
      • SaleModule
        • Model
        • Presenters
      • SettingsModule
        • Model
        • Presenters
      • StoreModule
        • Model
        • Presenters
    • Presenters
    • Router
  • PHP

Classes

  • DateTime
  • SplFileInfo

Interfaces

  • ArrayAccess
  • Countable
  • Exception
  • Iterator
  • Traversable
  • Overview
  • Namespace
  • Class
  • Tree
  • Deprecated
  • Download
 1: <?php
 2: /**
 3:  * Project sberp
 4:  *
 5:  * @file IComponent
 6:  * @author Jaromír Polášek
 7:  * @version 0.7.1.FORM
 8:  * Encoding UTF-8
 9:  */
10: 
11: namespace App\Interfaces;
12: 
13: /**
14:  * Interface pro komponenty
15:  */
16: interface IComponent {
17:     
18:     /**
19:      * vykreslí komponentu
20:      */
21:     public function render();
22:     
23:     /**
24:      * Vytvoří komponentu
25:      */
26:     public function create();
27:     
28: }
29: 
sberp API API documentation generated by ApiGen