コード例 #1
0
ファイル: client_class.php プロジェクト: ClixLtd/pccupload
 public function save()
 {
     // -- Save the Client Details to the DB
     // ------------------------------------
     if (\ClientModel::saveClient($this->_values) == true) {
         return true;
     } else {
         return false;
     }
 }