コード例 #1
0
ファイル: Category.php プロジェクト: doctorjbeam/railpagecore
 /** 
  * Constructor
  * @since Version 3.5
  * @param int $id
  */
 public function __construct($id = false)
 {
     parent::__construct();
     if ($id) {
         $this->id = $id;
         $this->fetch();
     }
 }