Example #1
0
 function loadedCacheStatic($v)
 {
     parent::loadCacheStatic($v);
     array_push($this->foot, "\n");
 }
Example #2
0
 function createChild($parse = null, $builder = null)
 {
     $tml = new Markup();
     $tml->setParent($this);
     if (isset($builder)) {
         $tml->setBuilder($builder);
     } else {
         $tml->setBuilder($this->constructor);
     }
     if (isset($parse)) {
         $tml->parse($parse);
     }
     return $tml;
 }
Example #3
0
 function addToGroup($node)
 {
     parent::offsetSet(null, $node);
 }