#17763740 : added the list of contributors

git-svn-id: http://xe-core.googlecode.com/svn/sandbox@5987 201d5d3c-b55e-5fd7-737f-ddc643e51545
This commit is contained in:
haneul 2009-03-27 09:00:37 +00:00
parent 86ada3ed8f
commit 820775863a
10 changed files with 63 additions and 5 deletions

View file

@ -0,0 +1,22 @@
<?php
/**
* @class wikiModel
* @author haneul (haneul0318@gmail.com)
* @brief wiki 모듈의 Model class
**/
class wikiModel extends module {
/**
* @brief 초기화
**/
function init() {
}
function getContributors($document_srl) {
$args->document_srl = $document_srl;
$output = executeQueryArray("wiki.getContributors", $args);
if(!$output->data) return array();
return $output->data;
}
}
?>