PATH:
home
/
letacommog
/
pymreception1
/
wp-content
/
plugins
/
adminimize
/
inc-options
<?php /** * Global options area on the settings page. * * @package Adminimize * @subpackage Global Options * @author Frank Bültge */ if ( ! function_exists( 'add_action' ) ) { echo "Hi there! I'm just a part of plugin, not much I can do when called directly."; exit; } ?> <div id="poststuff" class="ui-sortable meta-box-sortables"> <div class="postbox"> <div class="handlediv" title="<?php esc_attr_e( 'Click to toggle', 'adminimize' ); ?>"><br/></div> <h3 class="hndle" id="global_options"><?php esc_attr_e( 'Global options', 'adminimize' ); ?></h3> <div class="inside"> <br class="clear"/> <table summary="config_edit_post" class="widefat"> <colgroup> <?php $col = 0; if ( ! isset( $user_roles_names ) ) { $user_roles_names = _mw_adminimize_get_all_user_roles_names(); } foreach ( $user_roles_names as $role_name ) { // phpcs:disable echo '<col class="col' . $col . '">' . "\n"; $col ++; } ?> </colgroup> <thead> <tr> <th><?php esc_attr_e( 'Option', 'adminimize' ); ?></th> <?php foreach ( $user_roles_names as $role_name ) { ?> <th> <?php esc_attr_e( 'Deactivate for', 'adminimize' ); echo '<br/>' . esc_html( $role_name ); ?> </th> <?php } ?> </tr> <tr> <td><?php esc_attr_e( 'Select all', 'adminimize' ); ?></td> <?php if ( ! isset( $user_roles ) ) { $user_roles = _mw_adminimize_get_all_user_roles(); } foreach ( $user_roles as $role_slug ) { echo '<td class="num">'; echo '<input id="select_all" class="global_options_' . esc_attr( $role_slug ) . '" type="checkbox" name="" value="" />'; echo '</td>' . "\n"; } ?> </tr> </thead> <tbody> <?php $disabled_global_option_ = array(); foreach ( $user_roles as $role ) { $disabled_global_option_[ $role ] = _mw_adminimize_get_option_value( 'mw_adminimize_disabled_global_option_' . $role . '_items' ); } $global_options = array( '.show-admin-bar', '#favorite-actions', '#screen-meta', '#screen-options, #screen-options-link-wrap', '#contextual-help-link-wrap', '#your-profile .form-table fieldset', '.admin-notices', ); $global_options_names = array( esc_attr__( 'Admin Bar', 'adminimize' ), esc_attr__( 'Favorite Actions', 'adminimize' ), esc_attr__( 'Screen-Meta', 'adminimize' ), esc_attr__( 'Screen Options', 'adminimize' ), esc_attr__( 'Contextual Help', 'adminimize' ), esc_attr__( 'Admin Color Scheme', 'adminimize' ), esc_attr__( 'Admin Notices', 'adminimize' ), ); $_mw_adminimize_own_values = _mw_adminimize_get_option_value( '_mw_adminimize_own_values' ); $_mw_adminimize_own_values = preg_split( "/\r\n/", $_mw_adminimize_own_values ); foreach ( (array) $_mw_adminimize_own_values as $key => $_mw_adminimize_own_value ) { $_mw_adminimize_own_value = trim( $_mw_adminimize_own_value ); $global_options[] = $_mw_adminimize_own_value; } $_mw_adminimize_own_options = _mw_adminimize_get_option_value( '_mw_adminimize_own_options' ); $_mw_adminimize_own_options = preg_split( "/\r\n/", $_mw_adminimize_own_options ); foreach ( (array) $_mw_adminimize_own_options as $key => $_mw_adminimize_own_option ) { $_mw_adminimize_own_option = trim( $_mw_adminimize_own_option ); $global_options_names[] = $_mw_adminimize_own_option; } $x = 0; foreach ( $global_options as $index => $global_option ) { if ( empty( $global_option ) ) { continue; } $global_option = esc_attr( $global_option ); $checked_user_role_ = array(); foreach ( (array) $user_roles as $role ) { $checked_user_role_[ $role ] = _mw_adminimize_is_checked( $global_option, $disabled_global_option_[ $role ] ); } echo '<tr>' . "\n"; echo '<td>' . $global_options_names[ $index ] . ' <span>(' . $global_option . ')</span> </td>' . "\n"; foreach ( (array) $user_roles as $role ) { echo '<td class="num"><input id="check_post' . $role . $x . '" class="global_options_' . preg_replace( '/[^a-z0-9_-]+/', '', $role ) . '" type="checkbox" ' . $checked_user_role_[ $role ] . ' name="mw_adminimize_disabled_global_option_' . $role . '_items[]" value="' . $global_option . '" /></td>' . "\n"; } echo '</tr>' . "\n"; $x ++; } ?> </tbody> </table> <?php // your own global options. ?> <br style="margin-top: 10px;"/> <table summary="config_edit_post" class="widefat"> <thead> <tr> <th> <?php esc_attr_e( 'Your own options', 'adminimize' ); echo '<br />'; esc_attr_e( 'Option name', 'adminimize' ); ?> </th> <th> <?php echo '<br />'; esc_attr_e( 'Selector, ID or class', 'adminimize' ); ?> </th> </tr> </thead> <tbody> <tr valign="top"> <td colspan="2"> <?php esc_attr_e( 'It is possible to add your own IDs or classes from elements and tags. You can find IDs and classes with the FireBug Add-on for Firefox. Assign a value and the associate name per line.', 'adminimize' ); ?> </td> </tr> <tr valign="top"> <td> <label for="_mw_adminimize_own_options"></label> <textarea name="_mw_adminimize_own_options" cols="60" rows="3" id="_mw_adminimize_own_options" style="width: 95%;"> <?php // The function sanitize the output. // phpcs:disable echo _mw_adminimize_get_option_value( '_mw_adminimize_own_options' ); ?> </textarea> <br/> <?php esc_attr_e( 'Possible nomination for ID or class. Separate multiple nominations through a carriage return.', 'adminimize' ); ?> </td> <td> <label for="_mw_adminimize_own_values"></label> <textarea class="code" name="_mw_adminimize_own_values" cols="60" rows="3" id="_mw_adminimize_own_values" style="width: 95%;"> <?php // The function sanitize the output. // phpcs:disable echo _mw_adminimize_get_option_value( '_mw_adminimize_own_values' ); ?> </textarea> <br/> <?php esc_attr_e( 'Possible IDs or classes. Separate multiple values through a carriage return.', 'adminimize' ); ?> </td> </tr> </tbody> </table> <p id="submitbutton"> <input type="hidden" name="_mw_adminimize_action" value="_mw_adminimize_insert"/> <input class="button button-primary" type="submit" name="_mw_adminimize_save" value=" <?php esc_attr_e( 'Update Options', 'adminimize' ); ?> »"/><input type="hidden" name="page_options" value="'dofollow_timeout'"/> </p> <p> <a class="alignright button adminimize-scroltop" href="#" style="margin:3px 0 0 30px;"> <?php esc_attr_e( 'scroll to top', 'adminimize' ); ?> </a> <br class="clear"/> </p> </div> </div> </div>
[+]
..
[-] settings_notice.php
[edit]
[-] backend_options.php
[edit]
[-] menu_options.php
[edit]
[-] global_options.php
[edit]
[-] wp_nav_menu_options.php
[edit]
[-] minimenu.php
[edit]
[-] admin_bar_frontend.php
[edit]
[-] deinstall_options.php
[edit]
[-] im_export_options.php
[edit]
[-] admin_bar.php
[edit]
[-] widget_options.php
[edit]
[-] theme_options.php
[edit]
[-] write_page_options.php
[edit]
[-] write_cp_options.php
[edit]
[-] links_options.php
[edit]
[-] write_post_options.php
[edit]
[-] dashboard_options.php
[edit]
[-] self_settings.php
[edit]