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


PHP ThemexCore::addFile方法代碼示例

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


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

示例1: updateAvatar

 /**
  * Updates user avatar
  *
  * @access public
  * @param int $ID
  * @param array $file
  * @return void
  */
 public static function updateAvatar($ID, $file)
 {
     $avatar = intval(ThemexCore::getUserMeta($ID, 'avatar'));
     $attachment = ThemexCore::addFile($file);
     wp_delete_attachment($avatar);
     if (isset($attachment['ID']) && $attachment['ID'] != 0) {
         ThemexCore::updateUserMeta($ID, 'avatar', $attachment['ID']);
     }
 }
開發者ID:qhuit,項目名稱:UrbanPekor,代碼行數:17,代碼來源:themex.user.php

示例2: updateImage

 /**
  * Updates image
  *
  * @access public
  * @param int $ID
  * @param array $file
  * @return void
  */
 public static function updateImage($ID, $file)
 {
     if (!empty($ID)) {
         $current = get_post_thumbnail_id($ID);
         wp_delete_attachment($current, true);
         $attachment = ThemexCore::addFile($file, array(), $ID);
         if (isset($attachment['ID']) && $attachment['ID'] != 0) {
             add_post_meta($ID, '_thumbnail_id', $attachment['ID']);
         }
     }
 }
開發者ID:TheTypoMaster,項目名稱:wp_marketplace,代碼行數:19,代碼來源:themex.core.php

示例3: addImage

 /**
  * Adds product image
  *
  * @access public
  * @param int $ID
  * @param array $file
  * @return void
  */
 public static function addImage($ID, $file)
 {
     if (empty($ID)) {
         $ID = self::addProduct();
     }
     $attachment = ThemexCore::addFile($file);
     if (isset($attachment['ID']) && $attachment['ID'] != 0) {
         $images = get_post_meta($ID, '_product_image_gallery', true);
         if (!empty($images)) {
             $images .= ',' . $attachment['ID'];
         } else {
             $images = $attachment['ID'];
         }
         update_post_meta($ID, '_product_image_gallery', $images);
     }
     wp_redirect(ThemexCore::getURL('shop-product', $ID));
     exit;
 }
開發者ID:qhuit,項目名稱:UrbanPekor,代碼行數:26,代碼來源:themex.woo.php


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