openrat-cms

Unnamed repository; edit this file 'description' to name the repository.
Log | Files | Refs | README

FieldComponent.class.php (266B)


      1 <?php
      2 
      3 namespace template_engine\components\html;
      4 
      5 
      6 use template_engine\components\html\HtmlComponent;
      7 use template_engine\element\Element;
      8 
      9 abstract class FieldComponent extends HtmlComponent
     10 {
     11 
     12     public $prefix;
     13     public $name;
     14     public $readonly = false;
     15 }