程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> 網頁編程 >> PHP編程 >> 關於PHP編程 >> elgg 獲取文件圖標地址的方法

elgg 獲取文件圖標地址的方法

編輯:關於PHP編程

過程如下:
首先,實體保存的時候用這個方法(系統本身的):
比如有一個Activity類,繼承自ElggObject,創建了一個它的實例 activity,
復制代碼 代碼如下:
// Now see if we have a file icon
if ((isset($_FILES['icon'])) && (substr_count($_FILES['icon']['type'],'image/'))) {
$prefix = "activity/".$activity->guid;
$filehandler = new ElggFile();
$filehandler->owner_guid = $activity->owner_guid;
$filehandler->setFilename($prefix . ".jpg");
$filehandler->open("write");
$filehandler->write(get_uploaded_file('icon'));
$filehandler->close();
$thumbtiny = get_resized_image_from_existing_file($filehandler->getFilenameOnFilestore(),25,25, true);
$thumbsmall = get_resized_image_from_existing_file($filehandler->getFilenameOnFilestore(),40,40, true);
$thumbmedium = get_resized_image_from_existing_file($filehandler->getFilenameOnFilestore(),100,100, true);
$thumblarge = get_resized_image_from_existing_file($filehandler->getFilenameOnFilestore(),200,200, false);
if ($thumbtiny) {
$thumb = new ElggFile();
$thumb->owner_guid = $activity->owner_guid;
$thumb->setMimeType('image/jpeg');
$thumb->setFilename($prefix."tiny.jpg");
$thumb->open("write");
$thumb->write($thumbtiny);
$thumb->close();
$thumb->setFilename($prefix."small.jpg");
$thumb->open("write");
$thumb->write($thumbsmall);
$thumb->close();
$thumb->setFilename($prefix."medium.jpg");
$thumb->open("write");
$thumb->write($thumbmedium);
$thumb->close();
$thumb->setFilename($prefix."large.jpg");
$thumb->open("write");
$thumb->write($thumblarge);
$thumb->close();
}
}

這個過程後,文件將被保存至一個由用戶名字符串組成的一個目錄結構下,比如用戶名是abc,則被保存在了a/b/c/下,然後由圖片的guid+size+.jpg組成一個文件名。
獲取src地址的時候,通過實體->getIcon();方法來獲取。getIcon是entities.php中的方法。然後這個方法會調用get_entity_icon_url方法,在get_entity_icon_url方法中有一行:
$url = trigger_plugin_hook('entity:icon:url', $entity->getType(), array('entity' => $entity, 'viewtype' => $viewtype, 'size' => $size), $url);
它會觸發一個鉤子(hook),這個hood需要在插件的start.php中注冊。注冊時這樣寫:
register_plugin_hook('entity:icon:url', 'object', 'activity_activityicon_hook');
第一個參數是鉤子類型,第二個是實體類型,也就是activity的類型,第三個是鉤子函數名。
然後在start.php中寫出activity_activityicon_hook方法:
復制代碼 代碼如下:
/**
* 獲取圖標
* This hooks into the getIcon API and provides nice user icons for users where possible.
*
* @param string $hook 鉤子名
* @param string $entity_type 實體類型
* @param string $returnvalue 圖片url地址
* @param unknow $params 參數表列
* @return string $url 圖片url地址
*/
function activity_activityicon_hook($hook, $entity_type, $returnvalue, $params) {
global $CONFIG;
if ((!$returnvalue) && ($hook == 'entity:icon:url') && ($params['entity'] instanceof Activity)) {
$entity = $params['entity'];
$type = $entity->type;
$viewtype = $params['viewtype'];
$size = $params['size'];
if ($icontime = $entity->icontime) {
$icontime = "{$icontime}";
} else {
$icontime = "default";
}
$filehandler = new ElggFile();
$filehandler->owner_guid = $entity->owner_guid;
$filehandler->setFilename("activity/" . $entity->guid . $size . ".jpg");
if ($filehandler->exists()) {
$url = $CONFIG->url . "pg/activityicon/{$entity->guid}/$size/$icontime.jpg";
return $url;
}
}
}

這個方法會返回一個url,這個url就是src的地址。url返回到get_entity_icon_url後,會根據圖片尺寸繼續加工,返回最終url。這樣就獲取到了src地址。

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved