Ferreteria/v0.3/class/tDataDesign

From Woozle Writes Code
< Ferreteria‎ | v0.3‎ | class
Revision as of 00:09, 31 December 2018 by htyp>Woozle (Created page with "{{page/code/class|ferreteria}} <source lang=php> trait tDataDesign { // RETURNS: list of fields we expect to find abstract public function GetFieldClassArray(); //...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

Template:Page/code/class

trait tDataDesign {
    // RETURNS: list of fields we expect to find
    abstract public function GetFieldClassArray();
    // RETURNS: string representing class of the field named by $sKey
    private $arClasses = NULL;
    public function GetClass_forField($sKey) {
    public function GetClass_default() {
    protected function HandleMissingField($sKey) {
}