VbzCart/archive/code/globals/clsDepts

from HTYP, the free directory anyone can edit if they can prove to me that they're not a spambot
< VbzCart‎ | archive‎ | code‎ | globals
Revision as of 02:01, 21 December 2012 by Woozle (talk | contribs) (Created page with "class clsDepts extends {{l/same|clsVbzTable}} { <php> public function __construct($iDB) { parent::__construct($iDB); $this->Name('cat_depts'); $this->KeyName('ID');...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

class clsDepts extends clsVbzTable { <php>

   public function __construct($iDB) {

parent::__construct($iDB); $this->Name('cat_depts'); $this->KeyName('ID'); $this->ClassSng('clsDept'); $this->ActionKey('dept');

   }
   protected function _newItem() {

CallStep('clsDepts._newItem()'); return new clsDept($this);

   }

</php> }

References

Notes

  • _newItem() duplicates the functionality of Spawn(), and should probably be removed.