当前位置: 首页>>代码示例>>PHP>>正文


PHP BP_XProfile_ProfileData::delete_for_field方法代码示例

本文整理汇总了PHP中BP_XProfile_ProfileData::delete_for_field方法的典型用法代码示例。如果您正苦于以下问题:PHP BP_XProfile_ProfileData::delete_for_field方法的具体用法?PHP BP_XProfile_ProfileData::delete_for_field怎么用?PHP BP_XProfile_ProfileData::delete_for_field使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在BP_XProfile_ProfileData的用法示例。


在下文中一共展示了BP_XProfile_ProfileData::delete_for_field方法的5个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。

示例1: delete

 public function delete($delete_data = false)
 {
     global $wpdb, $bp;
     // Prevent deletion if no ID is present
     // Prevent deletion by url when can_delete is false.
     // Prevent deletion of option 1 since this invalidates fields with options.
     if (empty($this->id) || empty($this->can_delete) || $this->parent_id && $this->option_order == 1) {
         return false;
     }
     if (!$wpdb->query($wpdb->prepare("DELETE FROM {$bp->profile->table_name_fields} WHERE id = %d OR parent_id = %d", $this->id, $this->id))) {
         return false;
     }
     // delete the data in the DB for this field
     if (true === $delete_data) {
         BP_XProfile_ProfileData::delete_for_field($this->id);
     }
     return true;
 }
开发者ID:kd5ytx,项目名称:Empirical-Wordpress,代码行数:18,代码来源:bp-xprofile-classes.php

示例2: delete

	function delete() {
		global $wpdb, $bp;

		if ( !$this->id ||
			// Prevent deletion by url when can_delete is false.
			!$this->can_delete ||
			// Prevent deletion of option 1 since this invalidates fields with options.
			( $this->parent_id && $this->option_order == 1 ) )
			return false;

		if ( !$wpdb->query( $wpdb->prepare( "DELETE FROM {$bp->profile->table_name_fields} WHERE id = %d OR parent_id = %d", $this->id, $this->id ) ) )
			return false;

		// delete the data in the DB for this field
		BP_XProfile_ProfileData::delete_for_field($this->id);

		return true;
	}
开发者ID:n-sane,项目名称:zaroka,代码行数:18,代码来源:bp-xprofile-classes.php

示例3: delete

 /**
  * Delete a profile field group
  *
  * @since 1.1.0
  *
  * @global object  $wpdb
  * @return boolean
  */
 public function delete()
 {
     global $wpdb;
     // Bail if field group cannot be deleted.
     if (empty($this->can_delete)) {
         return false;
     }
     /**
      * Fires before the current group instance gets deleted.
      *
      * @since 2.0.0
      *
      * @param BP_XProfile_Group $this Current instance of the group being deleted. Passed by reference.
      */
     do_action_ref_array('xprofile_group_before_delete', array(&$this));
     $bp = buddypress();
     $sql = $wpdb->prepare("DELETE FROM {$bp->profile->table_name_groups} WHERE id = %d", $this->id);
     $deleted = $wpdb->query($sql);
     // Delete field group.
     if (empty($deleted) || is_wp_error($deleted)) {
         return false;
     }
     // Remove the group's fields.
     if (BP_XProfile_Field::delete_for_group($this->id)) {
         // Remove profile data for the groups fields.
         for ($i = 0, $count = count($this->fields); $i < $count; ++$i) {
             BP_XProfile_ProfileData::delete_for_field($this->fields[$i]->id);
         }
     }
     /**
      * Fires after the current group instance gets deleted.
      *
      * @since 2.0.0
      *
      * @param BP_XProfile_Group $this Current instance of the group being deleted. Passed by reference.
      */
     do_action_ref_array('xprofile_group_after_delete', array(&$this));
     return true;
 }
开发者ID:JeroenNouws,项目名称:BuddyPress,代码行数:47,代码来源:class-bp-xprofile-group.php

示例4: delete

 function delete()
 {
     global $wpdb, $bp;
     if (!$this->id) {
         return false;
     }
     if (!$wpdb->query($wpdb->prepare("DELETE FROM {$bp->profile->table_name_fields} WHERE id = %d OR parent_id = %d", $this->id, $this->id))) {
         return false;
     }
     // delete the data in the DB for this field
     BP_XProfile_ProfileData::delete_for_field($this->id);
     return true;
 }
开发者ID:alvaropereyra,项目名称:shrekcms,代码行数:13,代码来源:bp-xprofile-classes.php

示例5: delete

 function delete()
 {
     global $nxtdb, $bp;
     if (!$this->id || !$this->can_delete || $this->parent_id && $this->option_order == 1) {
         return false;
     }
     if (!$nxtdb->query($nxtdb->prepare("DELETE FROM {$bp->profile->table_name_fields} WHERE id = %d OR parent_id = %d", $this->id, $this->id))) {
         return false;
     }
     /* delete the data in the DB for this field */
     BP_XProfile_ProfileData::delete_for_field($this->id);
     return true;
 }
开发者ID:nxtclass,项目名称:NXTClass,代码行数:13,代码来源:bp-xprofile-classes.php


注:本文中的BP_XProfile_ProfileData::delete_for_field方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。