コード例 #1
0
ファイル: ams_author.php プロジェクト: severnaya99/Sg-2010
function b_ams_author_show($options)
{
    if (!isset($options[3])) {
        $options[3] = "average";
    }
    include_once XOOPS_ROOT_PATH . "/modules/AMS/class/class.newsstory.php";
    $block = array();
    $authors = AmsStory::getAuthors($options[1], $options[0], $options[2], $options[3]);
    if (is_array($authors) && count($authors) > 0) {
        $block['authors'] = $authors;
    }
    return $block;
}