mirror of
https://github.com/Lastorder-DC/rhymix.git
synced 2026-04-14 07:52:13 +09:00
Added getDocumentSrlByTitle query in document module.
git-svn-id: http://xe-core.googlecode.com/svn/branches/1.5.0@10035 201d5d3c-b55e-5fd7-737f-ddc643e51545
This commit is contained in:
parent
d561328cdf
commit
ce8d3e6e7d
2 changed files with 24 additions and 0 deletions
|
|
@ -901,6 +901,16 @@
|
|||
else return $output->data->document_srl;
|
||||
}
|
||||
|
||||
function getDocumentSrlByTitle($module_srl, $title)
|
||||
{
|
||||
if(!$module_srl || !$title) return null;
|
||||
$args->module_srl = $module_srl;
|
||||
$args->title = $title;
|
||||
$output = executeQuery('document.getDocumentSrlByTitle', $args);
|
||||
if(!$output->data) return null;
|
||||
else return $output->data->document_srl;
|
||||
}
|
||||
|
||||
function getAlias($document_srl){
|
||||
if(!$document_srl) return null;
|
||||
$args->document_srl = $document_srl;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue