mirror of
https://gh.wpcy.net/https://github.com/buddypress/buddypress.git
synced 2026-05-31 05:04:29 +08:00
git-svn-id: https://buddypress.svn.wordpress.org/trunk@1315 cdf35c40-ae34-48e0-9cc9-0c9da1808c22
257 lines
10 KiB
PHP
257 lines
10 KiB
PHP
<?php
|
|
|
|
|
|
/**************************************************************************
|
|
xprofile_admin()
|
|
|
|
Handles all actions for the admin area for creating, editing and deleting
|
|
profile groups and fields.
|
|
**************************************************************************/
|
|
|
|
function xprofile_admin( $message = '', $type = 'error' ) {
|
|
global $bp;
|
|
|
|
$type = preg_replace( '|[^a-z]|i', '', $type );
|
|
|
|
$groups = BP_XProfile_Group::get_all();
|
|
|
|
if ( isset($_GET['mode']) && isset($_GET['group_id']) && 'add_field' == $_GET['mode'] ) {
|
|
xprofile_admin_manage_field($_GET['group_id']);
|
|
} else if ( isset($_GET['mode']) && isset($_GET['group_id']) && isset($_GET['field_id']) && 'edit_field' == $_GET['mode'] ) {
|
|
xprofile_admin_manage_field($_GET['group_id'], $_GET['field_id']);
|
|
} else if ( isset($_GET['mode']) && isset($_GET['field_id']) && 'delete_field' == $_GET['mode'] ) {
|
|
xprofile_admin_delete_field($_GET['field_id'], 'field');
|
|
} else if ( isset($_GET['mode']) && isset($_GET['option_id']) && 'delete_option' == $_GET['mode'] ) {
|
|
xprofile_admin_delete_field($_GET['option_id'], 'option');
|
|
} else if ( isset($_GET['mode']) && 'add_group' == $_GET['mode'] ) {
|
|
xprofile_admin_manage_group();
|
|
} else if ( isset($_GET['mode']) && isset($_GET['group_id']) && 'delete_group' == $_GET['mode'] ) {
|
|
xprofile_admin_delete_group($_GET['group_id']);
|
|
} else if ( isset($_GET['mode']) && isset($_GET['group_id']) && 'edit_group' == $_GET['mode'] ) {
|
|
xprofile_admin_manage_group($_GET['group_id']);
|
|
} else {
|
|
?>
|
|
<div class="wrap">
|
|
|
|
<h2><?php _e( 'Profile Field Setup', 'buddypress') ?></h2>
|
|
<br />
|
|
<p><?php _e( 'Your users will distinguish themselves through their profile page.
|
|
You must give them profile fields that allow them to describe themselves
|
|
in a way that is relevant to the theme of your social network.', 'buddypress') ?></p>
|
|
|
|
<p><?php _e('NOTE: Any fields in the first group will appear on the signup page.', 'buddypress'); ?></p>
|
|
|
|
<?php
|
|
if ( $message != '' ) {
|
|
$type = ( $type == 'error' ) ? 'error' : 'updated';
|
|
?>
|
|
<div id="message" class="<?php echo $type; ?> fade">
|
|
<p><?php echo wp_specialchars( $message ); ?></p>
|
|
</div>
|
|
<?php }
|
|
|
|
if ( $groups ) { ?>
|
|
<?php
|
|
for ( $i = 0; $i < count($groups); $i++ ) { // TODO: foreach
|
|
?>
|
|
<p>
|
|
<table id="group_<?php echo $groups[$i]->id;?>" class="widefat">
|
|
<thead>
|
|
<tr class="nodrag">
|
|
<th scope="col" colspan="<?php if ( $groups[$i]->can_delete ) { ?>3<?php } else { ?>5<?php } ?>"><?php echo $groups[$i]->name; ?></th>
|
|
<?php if ( $groups[$i]->can_delete ) { ?>
|
|
<th scope="col"><a class="edit" href="admin.php?page=<?php echo BP_PLUGIN_DIR ?>/bp-xprofile.php&mode=edit_group&group_id=<?php echo $groups[$i]->id; ?>"><?php _e( 'Edit', 'buddypress' ) ?></a></th>
|
|
<th scope="col"><a class="delete" href="admin.php?page=<?php echo BP_PLUGIN_DIR ?>/bp-xprofile.php&mode=delete_group&group_id=<?php echo $groups[$i]->id; ?>"><?php _e( 'Delete', 'buddypress' ) ?></a></th>
|
|
<?php } ?>
|
|
</tr>
|
|
</thead>
|
|
<tbody id="the-list">
|
|
<tr class="header nodrag">
|
|
<td><?php _e( 'Field Name', 'buddypress' ) ?></td>
|
|
<td width="14%"><?php _e( 'Field Type', 'buddypress' ) ?></td>
|
|
<td width="6%"><?php _e( 'Required?', 'buddypress' ) ?></td>
|
|
<td colspan="2" width="10%" style="text-align:center;"><?php _e( 'Action', 'buddypress' ) ?></td>
|
|
</tr>
|
|
|
|
<?php if ( $groups[$i]->fields ) { ?>
|
|
<?php for ( $j = 0; $j < count($groups[$i]->fields); $j++ ) { ?>
|
|
<?php if ( 0 == $j % 2 ) { $class = ""; } else { $class = "alternate"; } ?>
|
|
<?php $field = new BP_XProfile_Field($groups[$i]->fields[$j]->id); ?>
|
|
<?php if ( !$field->can_delete ) { $class .= ' core'; } ?>
|
|
|
|
<tr id="field_<?php echo $field->id; ?>" <?php if ( $class ) { echo 'class="' . $class . '"'; } ?>>
|
|
<td><span title="<?php echo $field->desc; ?>"><?php echo $field->name; ?> <?php if(!$field->can_delete) { ?>(Core)<?php } ?></span></td>
|
|
<td><?php echo $field->type; ?></td>
|
|
<td style="text-align:center;"><?php if ( $field->is_required ) { echo '<img src="' . $bp->profile->image_base . '/tick.gif" alt="' . _e( 'Yes', 'buddypress' ) . '" />'; } else { ?>--<?php } ?></td>
|
|
<td style="text-align:center;"><?php if ( !$field->can_delete ) { ?><strike><?php _e( 'Edit', 'buddypress' ) ?></strike><?php } else { ?><a class="edit" href="admin.php?page=<?php echo BP_PLUGIN_DIR ?>/bp-xprofile.php&group_id=<?php echo $groups[$i]->id; ?>&field_id=<?php echo $field->id; ?>&mode=edit_field"><?php _e( 'Edit', 'buddypress' ) ?></a><?php } ?></td>
|
|
<td style="text-align:center;"><?php if ( !$field->can_delete ) { ?><strike><?php _e( 'Delete', 'buddypress' ) ?></strike><?php } else { ?><a class="delete" href="admin.php?page=<?php echo BP_PLUGIN_DIR ?>/bp-xprofile.php&field_id=<?php echo $field->id; ?>&mode=delete_field"><?php _e( 'Delete', 'buddypress' ) ?></a><?php } ?></td>
|
|
</tr>
|
|
|
|
<?php } ?>
|
|
<?php } else { ?>
|
|
<tr class="nodrag">
|
|
<td colspan="6"><?php _e( 'There are no fields in this group.', 'buddypress' ) ?></td>
|
|
</tr>
|
|
<?php } ?>
|
|
<tr class="nodrag">
|
|
<td colspan="6"><a href="admin.php?page=<?php echo BP_PLUGIN_DIR ?>/bp-xprofile.php&group_id=<?php echo $groups[$i]->id; ?>&mode=add_field"><?php _e( 'Add New Field', 'buddypress' ) ?></a></td>
|
|
</tr>
|
|
</tbody>
|
|
</table>
|
|
</p>
|
|
|
|
<?php } /* End For */ ?>
|
|
|
|
<p>
|
|
<a href="admin.php?page=<?php echo BP_PLUGIN_DIR ?>/bp-xprofile.php&mode=add_group"><?php _e( 'Add New Group', 'buddypress' ) ?></a>
|
|
</p>
|
|
|
|
<?php } else { ?>
|
|
<div id="message" class="error"><p><?php _e('You have no groups.', 'buddypress' ); ?></p></div>
|
|
<p><a href="admin.php?page=<?php echo BP_PLUGIN_DIR ?>/bp-xprofile.php&mode=add_group"><?php _e( 'Add New Group', 'buddypress' ) ?></a></p>
|
|
<?php } ?>
|
|
</div>
|
|
<?php
|
|
}
|
|
}
|
|
|
|
|
|
/**************************************************************************
|
|
xprofile_admin_manage_group()
|
|
|
|
Handles the adding or editing of groups.
|
|
**************************************************************************/
|
|
|
|
function xprofile_admin_manage_group( $group_id = null ) {
|
|
global $message, $type;
|
|
|
|
$group = new BP_XProfile_Group($group_id);
|
|
|
|
if ( isset($_POST['saveGroup']) ) {
|
|
if ( BP_XProfile_Group::admin_validate($_POST) ) {
|
|
$group->name = wp_filter_kses( $_POST['group_name'] );
|
|
$group->description = wp_filter_kses( $_POST['group_desc'] );
|
|
|
|
if ( !$group->save() ) {
|
|
$message = __('There was an error saving the group. Please try again', 'buddypress');
|
|
$type = 'error';
|
|
} else {
|
|
$message = __('The group was saved successfully.', 'buddypress');
|
|
$type = 'success';
|
|
|
|
do_action( 'xprofile_groups_saved_group', $group );
|
|
}
|
|
|
|
unset($_GET['mode']);
|
|
xprofile_admin( $message, $type );
|
|
|
|
} else {
|
|
$group->render_admin_form($message);
|
|
}
|
|
} else {
|
|
$group->render_admin_form();
|
|
}
|
|
}
|
|
|
|
/**************************************************************************
|
|
xprofile_admin_delete_group()
|
|
|
|
Handles the deletion of profile data groups.
|
|
**************************************************************************/
|
|
|
|
function xprofile_admin_delete_group( $group_id ) {
|
|
global $message, $type;
|
|
|
|
$group = new BP_XProfile_Group($group_id);
|
|
|
|
if ( !$group->delete() ) {
|
|
$message = __('There was an error deleting the group. Please try again', 'buddypress');
|
|
$type = 'error';
|
|
} else {
|
|
$message = __('The group was deleted successfully.', 'buddypress');
|
|
$type = 'success';
|
|
|
|
do_action( 'xprofile_groups_deleted_group', $group );
|
|
}
|
|
|
|
unset($_GET['mode']); // TODO: wtf?
|
|
xprofile_admin( $message, $type );
|
|
}
|
|
|
|
|
|
/**************************************************************************
|
|
xprofile_admin_manage_field()
|
|
|
|
Handles the adding or editing of profile field data for a user.
|
|
**************************************************************************/
|
|
|
|
function xprofile_admin_manage_field( $group_id, $field_id = null ) {
|
|
global $message, $groups;
|
|
|
|
$field = new BP_XProfile_Field($field_id);
|
|
$field->group_id = $group_id;
|
|
|
|
if ( isset($_POST['saveField']) ) {
|
|
if ( BP_XProfile_Field::admin_validate($_POST) ) {
|
|
$field->name = wp_filter_kses( $_POST['title'] );
|
|
$field->desc = wp_filter_kses( $_POST['description'] );
|
|
$field->is_required = wp_filter_kses( $_POST['required'] );
|
|
$field->is_public= wp_filter_kses( $_POST['public'] );
|
|
$field->type = wp_filter_kses( $_POST['fieldtype'] );
|
|
$field->order_by = wp_filter_kses( $_POST["sort_order_$field->type"] );
|
|
|
|
if ( !$field->save() ) {
|
|
$message = __('There was an error saving the field. Please try again', 'buddypress');
|
|
$type = 'error';
|
|
|
|
unset($_GET['mode']);
|
|
xprofile_admin($message, $type);
|
|
} else {
|
|
$message = __('The field was saved successfully.', 'buddypress');
|
|
$type = 'success';
|
|
|
|
unset($_GET['mode']);
|
|
|
|
do_action( 'xprofile_fields_saved_field', $field );
|
|
|
|
$groups = BP_XProfile_Group::get_all();
|
|
xprofile_admin( $message, $type );
|
|
}
|
|
} else {
|
|
$field->render_admin_form($message);
|
|
}
|
|
} else {
|
|
$field->render_admin_form();
|
|
}
|
|
}
|
|
|
|
/**************************************************************************
|
|
xprofile_admin_delete_field()
|
|
|
|
Handles the deletion of a profile field [or option].
|
|
**************************************************************************/
|
|
|
|
function xprofile_admin_delete_field( $field_id, $type = 'field' ) {
|
|
global $message, $type;
|
|
|
|
if ( 'field' == $type ) {
|
|
$type = __('field', 'buddypress');
|
|
} else {
|
|
$type = __('option', 'buddypress');
|
|
}
|
|
|
|
$field = new BP_XProfile_Field($field_id);
|
|
|
|
if ( !$field->delete() ) {
|
|
$message = sprintf( __('There was an error deleting the %s. Please try again', 'buddypress'), $type);
|
|
$type = 'error';
|
|
} else {
|
|
$message = sprintf( __('The %s was deleted successfully!', 'buddypress'), $type);
|
|
$type = 'success';
|
|
|
|
do_action( 'xprofile_fields_deleted_field', $field );
|
|
}
|
|
|
|
unset($_GET['mode']);
|
|
xprofile_admin($message, $type);
|
|
}
|