VbzCart/docs/archive/code/globals/clsDepts: Difference between revisions
Jump to navigation
Jump to search
imported>Woozle (Created page with "class clsDepts extends {{l/same|clsVbzTable}} { <php> public function __construct($iDB) { parent::__construct($iDB); $this->Name('cat_depts'); $this->KeyName('ID');...") |
m (Woozle moved page VbzCart/VbzCart/archive/code/globals/clsDepts to VbzCart/docs/archive/code/globals/clsDepts without leaving a redirect: correct naming (was no way to import directly to this name)) |
||
| (2 intermediate revisions by one other user not shown) | |||
| Line 7: | Line 7: | ||
$this->ClassSng('clsDept'); | $this->ClassSng('clsDept'); | ||
$this->ActionKey('dept'); | $this->ActionKey('dept'); | ||
} | } | ||
</php> | </php> | ||
| Line 16: | Line 12: | ||
==References== | ==References== | ||
* {{l/same|clsDept}} | * {{l/same|clsDept}} | ||
Latest revision as of 01:53, 25 February 2024
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');
}
</php> }