本文整理匯總了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']);
}
}
示例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']);
}
}
}
示例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;
}