コード例 #1
0
ファイル: User.php プロジェクト: kvenkat971/FileZ
 /**
  * Constructor
  *
  * @param boolean $exists   Whether the object exists in database or not.
  *                          If false a ID will be automatically choosen
  */
 public function __construct($exists = false)
 {
     parent::__construct($exists);
     if ($exists == false) {
         $this->salt = sha1(uniqid(mt_rand(), true));
     }
 }
コード例 #2
0
ファイル: File.php プロジェクト: JAlexandre/FileZ
 /**
  * Delete the file from disk and database
  * 
  * @return void
  */
 public function delete()
 {
     $this->deleteFromDisk();
     return parent::delete();
 }
コード例 #3
0
ファイル: User.php プロジェクト: JAlexandre/FileZ
 /**
  * Constructor
  *
  * @param boolean $exists   Whether the object exists in database or not.
  *                          If false a ID will be automatically choosen
  */
 public function __construct($exists = false)
 {
     parent::__construct($exists);
 }