本文整理匯總了PHP中FileList::getHTML方法的典型用法代碼示例。如果您正苦於以下問題:PHP FileList::getHTML方法的具體用法?PHP FileList::getHTML怎麽用?PHP FileList::getHTML使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類FileList
的用法示例。
在下文中一共展示了FileList::getHTML方法的1個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。
示例1: on_get_list
/**
* Вывод списка файлов.
*/
public static function on_get_list(Context $ctx)
{
try {
$options = array('#raw' => true, 'name' => 'list', 'title' => t('Файловый архив'), 'path' => os::webpath(MCMS_SITE_FOLDER, $ctx->config->get('modules/files/storage')), 'advsearch' => true, 'canedit' => true, 'mode' => $ctx->get('mode', 'table'), 'scope' => $ctx->get('scope'), 'type' => 'file');
$tmp = new FileList($ctx, $options['scope']);
return $tmp->getHTML('files', $options);
} catch (TableNotFoundException $e) {
if ($e->getTableName() != 'node__idx_filetype') {
throw $e;
}
throw new Exception(t('Отсутствует индекс по полю filetype, <a href="@url">исправьте это</a> и возвращайтесь.', array('@url' => 'admin/structure/fields/edit?type=file&field=filetype&destination=' . urlencode(MCMS_REQUEST_URI))));
}
}