當前位置: 首頁>>代碼示例>>PHP>>正文


PHP ElggFile::getSubtype方法代碼示例

本文整理匯總了PHP中ElggFile::getSubtype方法的典型用法代碼示例。如果您正苦於以下問題:PHP ElggFile::getSubtype方法的具體用法?PHP ElggFile::getSubtype怎麽用?PHP ElggFile::getSubtype使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在ElggFile的用法示例。


在下文中一共展示了ElggFile::getSubtype方法的2個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。

示例1: file_tools_get_file_extension

/**
 * Get the extension of an ElggFile
 *
 * @param ElggFile $file the file to check
 *
 * @return string
 */
function file_tools_get_file_extension($file)
{
    $result = '';
    if ($file->getSubtype() == 'file') {
        if ($filename = $file->getFilename()) {
            $exploded_filename = explode('.', $filename);
            $result = end($exploded_filename);
        }
    }
    return strtolower($result);
}
開發者ID:lorea,項目名稱:Hydra-dev,代碼行數:18,代碼來源:functions.php

示例2: forward

    if (isset($params->container_guid)) {
        $container = get_entity($params->container_guid);
    } else {
        $container = elgg_get_logged_in_user_entity();
    }
}
if (!$container instanceof ElggEntity) {
    register_error(elgg_echo('images:error:not_found'));
    forward(REFERRER);
}
if (!$entity) {
    $entity = new ElggFile();
    $entity->subtype = 'file';
    $entity->container_guid = $container ? $container->guid : elgg_get_logged_in_user_guid();
}
if (!$entity->canEdit() || !$container->canWriteToContainer(0, $entity->getType(), $entity->getSubtype())) {
    register_error(elgg_echo('images:error:permission_denied'));
    forward(REFERRER);
}
$entity = images()->createFromUpload('upload', $entity);
if (!$entity) {
    register_error(elgg_echo('images:upload:error:invalid_file'));
    forward(REFERRER);
}
$entity->title = $params->title;
$entity->description = $params->description;
$entity->tags = string_to_tag_array((string) $params->tags);
$entity->access_id = isset($params->access_id) ? $params->access_id : get_default_access();
if ($entity->save()) {
    if (elgg_is_xhr()) {
        echo json_encode($entity->toObject());
開發者ID:hypeJunction,項目名稱:Elgg-images_ui,代碼行數:31,代碼來源:upload.php


注:本文中的ElggFile::getSubtype方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。