コード例 #1
0
ファイル: class_team.php プロジェクト: rythos42/naflm
 public function saveText($str)
 {
     $txt = new ObjDescriptions(T_TEXT_TEAM, $this->team_id);
     return $txt->save($str);
 }
コード例 #2
0
ファイル: class_coach.php プロジェクト: TheNAF/naflm
 public function saveText($str)
 {
     $desc = new ObjDescriptions(T_TEXT_COACH, $this->coach_id);
     return $desc->save($str);
 }
コード例 #3
0
ファイル: class_player.php プロジェクト: rythos42/naflm
 public function saveText($str)
 {
     $desc = new ObjDescriptions(T_TEXT_PLAYER, $this->player_id);
     return $desc->save($str);
 }