added a column for administrators.

This commit is contained in:
BJRambo 2016-03-14 09:41:34 +09:00
parent 3272c5a021
commit 9c653d210b
10 changed files with 59 additions and 7 deletions

View file

@ -1567,6 +1567,19 @@ class documentModel extends document
return $updage_log;
}
function getUpdateLogAdminisExists($document_srl = null)
{
if($document_srl == null)
{
return;
}
$args = new stdClass();
$args->document_srl = $document_srl;
$output = executeQueryArray('document.getUpdateLogAdminisExists', $args);
return $output->data;
}
}
/* End of file document.model.php */
/* Location: ./modules/document/document.model.php */