예제 #1
0
 /**
  * 締切日時指定スケジュール一覧インスタンス生成
  *
  * @param string $datetime_from 範囲開始日時
  * @param string $datetime_to 範囲終了日時
  * @return array ACSScheduleインスタンスの配列
  */
 function &get_schedule_instance_list_by_closing_datetime($datetime_from, $datetime_to)
 {
     $where = "schedule_closing_datetime >= " . "'" . ACSLib::convert_timestamp_to_pg_date($datetime_from) . "'" . " AND schedule_closing_datetime <= " . "'" . ACSLib::convert_timestamp_to_pg_date($datetime_to) . "'";
     return ACSSchedule::get_schedule_instance_list($where);
 }