예제 #1
0
 /**
  * フォルダ情報変更
  *
  * @param $input_folder_row
  *
  * @return $ret
  */
 function update_folder($input_folder_row)
 {
     $acs_user_info_row = $this->get_acs_user_info_row();
     $acs_user_community_id = $acs_user_info_row['user_community_id'];
     $folder_row['folder_name'] = $input_folder_row['folder_name'];
     $folder_row['comment'] = $input_folder_row['comment'];
     $folder_row['update_user_community_id'] = $acs_user_community_id;
     $folder_row['update_date'] = ACSLib::convert_timestamp_to_pg_date();
     $folder_row['open_level_code'] = $input_folder_row['open_level_code'];
     $trusted_community_id_array = $input_folder_row['trusted_community_id_array'];
     $ret = ACSFolderModel::update_folder_info($this->get_folder_id(), $folder_row, $trusted_community_id_array);
     return $ret;
 }