?AlkantarClanX12
| Current Path : /home/rankinh/villavanille/wp-content/plugins/drew-core/inc/roles/admin/ |
| Current File : /home/rankinh/villavanille/wp-content/plugins/drew-core/inc/roles/admin/role-fields.php |
<?php
if ( ! function_exists( 'drew_core_add_admin_user_options' ) ) {
/**
* Function that add global user options
*/
function drew_core_add_admin_user_options() {
$qode_framework = qode_framework_get_framework_root();
$roles_social_scope = apply_filters( 'drew_core_filter_role_social_array', array( 'administrator', 'author' ) );
$page = $qode_framework->add_options_page(
array(
'scope' => $roles_social_scope,
'type' => 'user',
'title' => esc_html__( 'Social Networks', 'drew-core' ),
'slug' => 'admin-options',
)
);
if ( $page ) {
$page->add_field_element(
array(
'field_type' => 'text',
'name' => 'qodef_user_facebook',
'title' => esc_html__( 'Facebook', 'drew-core' ),
'description' => esc_html__( 'Enter user Facebook profile URL', 'drew-core' ),
)
);
$page->add_field_element(
array(
'field_type' => 'text',
'name' => 'qodef_user_instagram',
'title' => esc_html__( 'Instagram', 'drew-core' ),
'description' => esc_html__( 'Enter user Instagram profile URL', 'drew-core' ),
)
);
$page->add_field_element(
array(
'field_type' => 'text',
'name' => 'qodef_user_twitter',
'title' => esc_html__( 'Twitter', 'drew-core' ),
'description' => esc_html__( 'Enter user Twitter profile URL', 'drew-core' ),
)
);
$page->add_field_element(
array(
'field_type' => 'text',
'name' => 'qodef_user_linkedin',
'title' => esc_html__( 'LinkedIn', 'drew-core' ),
'description' => esc_html__( 'Enter user LinkedIn profile URL', 'drew-core' ),
)
);
$page->add_field_element(
array(
'field_type' => 'text',
'name' => 'qodef_user_pinterest',
'title' => esc_html__( 'Pinterest', 'drew-core' ),
'description' => esc_html__( 'Enter user Pinterest profile URL', 'drew-core' ),
)
);
// Hook to include additional options after module options
do_action( 'drew_core_action_after_admin_user_options_map', $page );
}
}
add_action( 'drew_core_action_register_role_custom_fields', 'drew_core_add_admin_user_options' );
}