PATH:
home
/
letacommog
/
pymreception1
/
wp-content
/
plugins
/
adminimize
/
inc-options
<?php /** * @package Adminimize * @subpackage Page 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="config_edit_page"><?php esc_attr_e( 'Write options - Page', 'adminimize' ); ?></h3> <div class="inside"> <br class="clear" /> <table summary="config_edit_page" class="widefat"> <colgroup> <?php $col = 0; foreach ( (array) $user_roles_names as $role_name ) { echo '<col class="col' . (int) $col . '">' . "\n"; $col ++; } ?> </colgroup> <thead> <tr> <th><?php esc_attr_e( 'Write options - Page', 'adminimize' ); ?></th> <?php foreach ( (array) $user_roles_names as $role_name ) { echo '<th>' . esc_attr_e( 'Deactivate for', 'adminimize' ) . '<br />' . esc_attr( $role_name ) . '</th>'; } ?> </tr> <tr> <td><?php esc_attr_e( 'Select all', 'adminimize' ); ?></td> <?php foreach ( (array) $user_roles as $role_slug ) { echo '<td class="num"><input id="select_all" class="write_page_options_' . esc_attr( $role_slug ) . '" type="checkbox" name="" value="" /></td>' . "\n"; } ?> </tr> </thead> <tbody> <?php // pages $metaboxes_page = array( '#contextual-help-link-wrap', '#screen-options-link-wrap', '.page-title-action', '#title, #titlediv, th.column-title, td.title', '#pageslugdiv', '#pagepostcustom, #pagecustomdiv, #postcustom', '#pagecommentstatusdiv, #commentsdiv, #comments, th.column-comments, td.comments', '#date, #datediv, th.column-date, td.date, div.curtime', '#pagepassworddiv', '#pageparentdiv', '#pagetemplatediv', '#pageorderdiv', '#pageauthordiv, #author, #authordiv, th.column-author, td.author', '#revisionsdiv', '.side-info', '#notice', '#post-body h2', '#media-buttons, #wp-content-media-buttons', '#wp-word-count', '#slugdiv,#edit-slug-box', '#misc-publishing-actions', '#commentstatusdiv', '#editor-toolbar #edButtonHTML, #quicktags, #content-html', ); $post_type = 'page'; foreach ( $GLOBALS[ '_wp_post_type_features' ][ $post_type ] as $post_type_support => $key ) { if ( post_type_supports( $post_type, $post_type_support ) ) { if ( 'excerpt' === $post_type_support ) { $post_type_support = $post_type . 'excerpt'; } } if ( 'page-attributes' === $post_type_support ) { $post_type_support = 'pageparentdiv'; } if ( 'custom-fields' == $post_type_support ) { $post_type_support = $post_type . 'custom'; } if ( 'post-formats' === $post_type_support ) { $post_type_support = 'format'; } $metaboxes[] = '#' . $post_type_support . ', #' . $post_type_support . 'div, th.column-' . $post_type_support . ', td.' . $post_type_support; // td for raw in edit screen } if ( function_exists( 'current_theme_supports' ) && current_theme_supports( 'post-thumbnails', 'page' ) ) { $metaboxes_page[] = '#postimagediv'; } // quick edit areas, id and class $quickedit_page_areas = array( 'div.row-actions, div.row-actions .inline', 'fieldset.inline-edit-col-left', 'fieldset.inline-edit-col-left label', 'fieldset.inline-edit-col-left div.inline-edit-date', 'fieldset.inline-edit-col-left label.inline-edit-author', 'fieldset.inline-edit-col-left .inline-edit-group', 'fieldset.inline-edit-col-right', 'fieldset.inline-edit-col-right .inline-edit-col', 'fieldset.inline-edit-col-right .inline-edit-group', 'tr.inline-edit-page p.inline-edit-save' ); $metaboxes_page = array_merge( $metaboxes_page, $quickedit_page_areas ); $metaboxes_names_page = array( esc_attr__( 'Help', 'adminimize' ), esc_attr__( 'Screen Options', 'adminimize' ), esc_attr__( 'Add New', 'adminimize' ), esc_attr__( 'Title', 'adminimize' ), esc_attr__( 'Permalink', 'adminimize' ), esc_attr__( 'Custom Fields', 'adminimize' ), esc_attr__( 'Comments & Pings', 'adminimize' ), esc_attr__( 'Date', 'adminimize' ), esc_attr__( 'Password Protect This Page', 'adminimize' ), esc_attr__( 'Attributes', 'adminimize' ), esc_attr__( 'Page Template', 'adminimize' ), esc_attr__( 'Page Order', 'adminimize' ), esc_attr__( 'Page Author', 'adminimize' ), esc_attr__( 'Page Revisions', 'adminimize' ), esc_attr__( 'Related', 'adminimize' ), esc_attr__( 'Messages', 'adminimize' ), esc_attr__( 'h2: Advanced Options', 'adminimize' ), esc_attr__( 'Media Buttons (all)', 'adminimize' ), esc_attr__( 'Word count', 'adminimize' ), esc_attr__( 'Page Slug', 'adminimize' ), esc_attr__( 'Publish Actions', 'adminimize' ), esc_attr__( 'Discussion', 'adminimize' ), esc_attr__( 'HTML Editor Button', 'adminimize' ) ); foreach ( $GLOBALS[ '_wp_post_type_features' ][ $post_type ] as $post_type_support => $key ) { if ( post_type_supports( $post_type, $post_type_support ) ) { $metaboxes_names[] = ucfirst( $post_type_support ); } } if ( function_exists( 'current_theme_supports' ) && current_theme_supports( 'post-thumbnails', 'page' ) ) { $metaboxes_names_page[] = esc_attr__( 'Page Image', 'adminimize' ); } // quick edit names $quickedit_page_names = array( '<strong>' . esc_attr__( 'Quick Edit Link', 'adminimize' ) . '</strong>', esc_attr__( 'QE', 'adminimize' ) . ' ' . esc_attr__( 'Inline Edit Left', 'adminimize' ), ' ' . esc_attr__( 'QE', 'adminimize' ) . ' ⇒' . ' ' . esc_attr__( 'All Labels', 'adminimize' ), ' ' . esc_attr__( 'QE', 'adminimize' ) . ' ⇒' . ' ' . esc_attr__( 'Date', 'adminimize' ), ' ' . esc_attr__( 'QE', 'adminimize' ) . ' ⇒' . ' ' . esc_attr__( 'Author' ), ' ' . esc_attr__( 'QE', 'adminimize' ) . ' ⇒' . ' ' . esc_attr__( 'Password and Private', 'adminimize' ), esc_attr__( 'QE', 'adminimize' ) . ' ' . esc_attr__( 'Inline Edit Right', 'adminimize' ), ' ' . esc_attr__( 'QE', 'adminimize' ) . ' ⇒' . ' ' . esc_attr__( 'Parent, Order, Template', 'adminimize' ), ' ' . esc_attr__( 'QE', 'adminimize' ) . ' ⇒' . ' ' . esc_attr__( 'Status', 'adminimize' ), esc_attr__( 'QE', 'adminimize' ) . ' ' . esc_attr__( 'Cancel/Save Button', 'adminimize' ) ); $metaboxes_names_page = array_merge( $metaboxes_names_page, $quickedit_page_names ); // add own page options $_mw_adminimize_own_page_values = _mw_adminimize_get_option_value( '_mw_adminimize_own_page_values' ); $_mw_adminimize_own_page_values = preg_split( "/\r\n/", $_mw_adminimize_own_page_values ); foreach ( (array) $_mw_adminimize_own_page_values as $key => $_mw_adminimize_own_page_value ) { $_mw_adminimize_own_page_value = trim( $_mw_adminimize_own_page_value ); $metaboxes_page[] = $_mw_adminimize_own_page_value; } $_mw_adminimize_own_page_options = _mw_adminimize_get_option_value( '_mw_adminimize_own_page_options' ); $_mw_adminimize_own_page_options = preg_split( "/\r\n/", $_mw_adminimize_own_page_options ); foreach ( (array) $_mw_adminimize_own_page_options as $key => $_mw_adminimize_own_page_option ) { $_mw_adminimize_own_page_option = trim( $_mw_adminimize_own_page_option ); $metaboxes_names_page[] = $_mw_adminimize_own_page_option; } $x = 0; foreach ( $metaboxes_page as $index => $metabox ) { if ( $metabox != '' ) { $checked_user_role_ = array(); foreach ( $user_roles as $role ) { $checked_user_role_[ $role ] = ( isset( $disabled_metaboxes_page_[ $role ] ) && in_array( $metabox, $disabled_metaboxes_page_[ $role ] ) ) ? ' checked="checked"' : ''; } echo '<tr>' . "\n"; echo '<td>' . $metaboxes_names_page[ $index ] . ' <span>(' . $metabox . ')</span> </td>' . "\n"; foreach ( $user_roles as $role ) { echo '<td class="num">'; echo '<input id="check_page' . $role . $x . '" class="write_page_options_' . preg_replace( '/[^a-z0-9_-]+/', '', $role ) . '" type="checkbox"' . $checked_user_role_[ $role ] . ' name="mw_adminimize_disabled_metaboxes_page_' . $role . '_items[]" value="' . $metabox . '" />'; echo '</td>' . "\n"; } echo '</tr>' . "\n"; $x ++; } } ?> </tbody> </table> <?php //ypur own page options ?> <br style="margin-top: 10px;" /> <table summary="config_own_page" 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> <textarea name="_mw_adminimize_own_page_options" cols="60" rows="3" id="_mw_adminimize_own_page_options" style="width: 95%;"><?php echo _mw_adminimize_get_option_value( '_mw_adminimize_own_page_options' ); ?></textarea> <br /> <?php esc_attr_e( 'Possible nomination for ID or class. Separate multiple nominations through a carriage return.', 'adminimize' ); ?> </td> <td> <textarea class="code" name="_mw_adminimize_own_page_values" cols="60" rows="3" id="_mw_adminimize_own_page_values" style="width: 95%;"><?php echo _mw_adminimize_get_option_value( '_mw_adminimize_own_page_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]