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


PHP ThemexCore::removeUserRelation方法代碼示例

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


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

示例1: uncompleteLesson

 /**
  * Uncompletes lesson
  *
  * @access public
  * @return void
  */
 public static function uncompleteLesson()
 {
     if (!ThemexCore::checkOption('lesson_retake')) {
         ThemexCore::removeUserRelation(get_current_user_id(), self::$data['ID'], 'lesson');
         if (!empty(self::$data['quiz'])) {
             ThemexCore::removeUserRelation(get_current_user_id(), self::$data['quiz']['ID'], 'questions');
             ThemexCore::removeUserRelation(get_current_user_id(), self::$data['quiz']['ID'], 'answers');
         }
     }
 }
開發者ID:rinodung,項目名稱:wordpress-demo,代碼行數:16,代碼來源:themex.lesson.php

示例2: deleteUser

 /**
  * Deletes course member
  *
  * @access public
  * @param int $ID
  * @return void
  */
 public static function deleteUser($ID)
 {
     ThemexCore::removeUserRelation($ID, 0, 'plan');
     ThemexCore::removeUserRelation($ID, 0, 'course');
     ThemexCore::removeUserRelation($ID, 0, 'certificate');
     ThemexCore::removeUserRelation($ID, 0, 'lesson');
     ThemexCore::removeUserRelation($ID, 0, 'quiz');
 }
開發者ID:rinodung,項目名稱:wordpress-demo,代碼行數:15,代碼來源:themex.course.php

示例3: removeRelation

 /**
  * Removes user relation
  *
  * @access public
  * @param int $ID
  * @param array $data
  * @return void
  */
 public static function removeRelation($ID, $data)
 {
     $relation = themex_value('relation_id', $data);
     $type = themex_value('relation_type', $data);
     if (in_array($type, array('shop', 'product'))) {
         ThemexCore::removeUserRelation($ID, $relation, $type);
         if ($type == 'shop') {
             $relations = count(ThemexCore::getUserRelations(0, $relation, 'shop'));
             ThemexCore::updatePostMeta($relation, 'admirers', $relations);
         }
     }
     die;
 }
開發者ID:qhuit,項目名稱:UrbanPekor,代碼行數:21,代碼來源:themex.user.php


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