コード例 #1
0
ファイル: user.php プロジェクト: Kekesed/Kambeng-Blog
 /**
  *  @see SqlMapper::__set($key, $value);
  */
 function __set($key, $value)
 {
     if ($key == "password") {
         $value = Bcrypt::instance()->hash($value, $this->createSalt(), 14);
     }
     parent::__set($key, $value);
 }
コード例 #2
0
ファイル: sqlmapper.php プロジェクト: binarygeotech/burgers
 function __construct()
 {
     parent::__construct(new DB\SQL("sqlite:/tmp/test.sqlite"), "MyTest");
     $this->properties = array("mybool" => array("type" => "Boolean"), "mycolor" => array("type" => "Color"), "myemail" => array("type" => "Email"), "myfloat" => array("type" => "Float"), "myint" => array("type" => "Integer"), "mynumeric" => array("type" => "Numeric"), "mytext" => array("type" => "Text"));
 }
コード例 #3
0
ファイル: group.php プロジェクト: Kekesed/Kambeng-Blog
 /**
  *  @see SqlMapper::__construct($db, $table, $ttl)
  */
 function __construct($db, $table = "groups", $ttl = 60)
 {
     parent::__construct($db, $table, $ttl);
     $this->properties = array("id" => array("type" => "Integer"), "name" => array("type" => "Text"));
 }