Esempio n. 1
0
 /**
  * 回覧先グループを削除する
  *
  * @return  boolean (true:正常/false:異常)
  * @access	public
  */
 function deleteGroup()
 {
     $groupId = $this->_request->getParameter('group_id');
     if ($groupId) {
         $result = $this->_db->deleteExecute('circular_group', array('group_id' => $groupId));
         if ($result === false) {
             $this->_db->addError();
             return false;
         }
     }
     return $groupId;
 }