VbzCart/docs/archive/code/globals/clsVbzTitles: Difference between revisions
Jump to navigation
Jump to search
imported>Woozle (more obsessive tidying) |
m (Woozle moved page VbzCart/VbzCart/archive/code/globals/clsVbzTitles to VbzCart/docs/archive/code/globals/clsVbzTitles without leaving a redirect: correct naming (was no way to import directly to this name)) |
(No difference)
|
Latest revision as of 01:53, 25 February 2024
References
- clsVbzTitle
- extends clsVbzTable (which doesn't seem to be in the archive [2022-10-14])
Code
class clsVbzTitles extends clsVbzTable {
public function __construct($iDB) {
parent::__construct($iDB);
$this->Name('cat_titles');
$this->KeyName('ID');
$this->ClassSng('clsVbzTitle');
}
public function Search_forText_SQL($iFind) {
return '(Name LIKE "%'.$iFind.'%") OR (`Desc` LIKE "%'.$iFind.'%")';
}
public function Search_forText($iFind) {
$sqlFilt = $this->Search_forText_SQL($iFind);
$rs = $this->GetData($sqlFilt);
return $rs;
}
}