Difference between revisions of "VbzCart/archive/code/globals/clsVbzTitles"

from HTYP, the free directory anyone can edit if they can prove to me that they're not a spambot
< VbzCart‎ | archive‎ | code‎ | globals
Jump to navigation Jump to search
(Created page with "class clsVbzTitles extends {{l/same|clsVbzTable}} { <php> public function __construct($iDB) { parent::__construct($iDB); $this->Name('cat_titles'); $this->KeyName('...")
 
(SMW: file)
Line 1: Line 1:
 +
<hide>
 +
[[file::VbzCart/code/files/base.cat.php]]
 +
</hide>
 
class clsVbzTitles extends {{l/same|clsVbzTable}} {
 
class clsVbzTitles extends {{l/same|clsVbzTable}} {
 
<php>
 
<php>

Revision as of 02:21, 21 December 2012

class clsVbzTitles extends clsVbzTable { <php>

   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;

   }

</php> }