当前位置: 首页>>代码示例>>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;未经允许,请勿转载。