本文整理汇总了PHP中MediaUtils::prefix方法的典型用法代码示例。如果您正苦于以下问题:PHP MediaUtils::prefix方法的具体用法?PHP MediaUtils::prefix怎么用?PHP MediaUtils::prefix使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类MediaUtils
的用法示例。
在下文中一共展示了MediaUtils::prefix方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: event_PostAuthentication
public function event_PostAuthentication(&$data)
{
global $CONF;
static $blogid = 0;
static $blogs = array();
MediaUtils::$lib_path = preg_replace('#/*$#', '', $this->getDirectory());
MediaUtils::$prefix = (bool) $CONF['MediaPrefix'];
MediaUtils::$maxsize = (int) $CONF['MaxUploadSize'];
$suffixes = explode(',', $CONF['AllowedTypes']);
foreach ($suffixes as $suffix) {
$suffix = trim($suffix);
if (!in_array($suffix, MediaUtils::$suffixes)) {
MediaUtils::$suffixes[] = strtolower($suffix);
}
}
$result = sql_query('SELECT bnumber, bshortname FROM ' . sql_table('blog') . ';');
while (FALSE !== ($row = sql_fetch_assoc($result))) {
$blogs[$row['bnumber']] = $row['bshortname'];
}
MediaUtils::$blogs =& $blogs;
if (array_key_exists('blogid', $_GET)) {
$blogid = (int) $_GET['blogid'];
} else {
if (array_key_exists('blogid', $_POST)) {
$blogid = (int) $_POST['blogid'];
} else {
if (array_key_exists('itemid', $_GET) && function_exists('getBlogIDFromItemID')) {
$blogid = (int) getBlogIDFromItemID((int) $_GET['itemid']);
} else {
if (array_key_exists('itemid', $_POST) && function_exists('getBlogIDFromItemID')) {
$blogid = (int) getBlogIDFromItemID((int) $_POST['itemid']);
} else {
if (array_key_exists(MediaUtils::$cookiename, $_COOKIE)) {
$blogid = (int) $_COOKIE['blogid'];
} else {
return;
}
}
}
}
}
MediaUtils::$blogid =& $blogid;
MediaUtils::$bshortname =& MediaUtils::$blogs[MediaUtils::$blogid];
return;
}