| Server IP : 213.186.33.2 / Your IP : 216.73.216.39 Web Server : Apache System : Linux webm005.cluster102.gra.hosting.ovh.net 6.18.42-ovh-vps-grsec-zfs+ #1 SMP PREEMPT_DYNAMIC Wed Aug 5 15:59:48 CEST 2026 x86_64 User : symetry ( 21728) PHP Version : 8.2.31 Disable Function : _dyuweyrj4,_dyuweyrj4r,dl MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : OFF | Pkexec : OFF Directory : /home/symetry/www/ARCHIVES/web/wp-content/plugins/adminimize/inc-options/ |
Upload File : |
<?php
/**
* @package Adminimize
* @subpackage Custom Post type 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;
}
// reset
$post_type = '';
$args = array( 'public' => TRUE, '_builtin' => FALSE );
foreach ( get_post_types( $args ) as $post_type ) {
$post_type_object = get_post_type_object($post_type);
?>
<div id="poststuff" class="ui-sortable meta-box-sortables">
<div class="postbox">
<div class="handlediv" title="<?php _e('Click to toggle'); ?>"><br/></div>
<h3 class="hndle" id="config_edit_<?php echo $post_type; ?>">
<?php _e('Write options', FB_ADMINIMIZE_TEXTDOMAIN ); echo ' - ' . $post_type_object->label; ?>
</h3>
<div class="inside">
<br class="clear" />
<table summary="config_edit_post" class="widefat">
<thead>
<tr>
<th><?php _e('Write options', FB_ADMINIMIZE_TEXTDOMAIN ); echo ' - ' . $post_type_object->label ?></th>
<?php
foreach ( $user_roles_names as $role_name ) { ?>
<th><?php _e('Deactivate for', FB_ADMINIMIZE_TEXTDOMAIN ); echo '<br/>' . $role_name; ?></th>
<?php } ?>
</tr>
</thead>
<tbody>
<?php
$metaboxes = array(
'#contextual-help-link-wrap',
'#screen-options-link-wrap',
'#pageslugdiv',
'#tagsdiv,#tagsdivsb,#tagsdiv-post_tag',
'#formatdiv',
'#categorydiv,#categorydivsb',
'#category-add-toggle',
'#passworddiv',
'.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'
);
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 = 'postexcerpt';
if ( 'page-attributes' === $post_type_support )
$post_type_support = 'pageparentdiv';
if ( 'custom-fields' == $post_type_support )
$post_type_support = 'postcustom';
array_push(
$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', $post_type )
)
array_push($metaboxes, '#postimagediv');
if (function_exists('sticky_add_meta_box'))
array_push($metaboxes, '#poststickystatusdiv');
// quick edit areas, id and class
$quickedit_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 label.inline-edit-author',
'fieldset.inline-edit-col-left .inline-edit-group',
'fieldset.inline-edit-col-center',
'fieldset.inline-edit-col-center .inline-edit-categories-label',
'fieldset.inline-edit-col-center .category-checklist',
'fieldset.inline-edit-col-right',
'fieldset.inline-edit-col-right .inline-edit-tags',
'fieldset.inline-edit-col-right .inline-edit-group',
'tr.inline-edit-save p.inline-edit-save'
);
$metaboxes = array_merge( $metaboxes, $quickedit_areas );
$metaboxes_names = array(
__('Help'),
__('Screen Options'),
__('Permalink', FB_ADMINIMIZE_TEXTDOMAIN ),
__('Tags', FB_ADMINIMIZE_TEXTDOMAIN ),
__('Format', FB_ADMINIMIZE_TEXTDOMAIN),
__('Categories', FB_ADMINIMIZE_TEXTDOMAIN ),
__('Add New Category', FB_ADMINIMIZE_TEXTDOMAIN ),
__('Password Protect This Post', FB_ADMINIMIZE_TEXTDOMAIN ),
__('Related, Shortcuts', FB_ADMINIMIZE_TEXTDOMAIN ),
__('Messages', FB_ADMINIMIZE_TEXTDOMAIN ),
__('h2: Advanced Options', FB_ADMINIMIZE_TEXTDOMAIN ),
__('Media Buttons (all)', FB_ADMINIMIZE_TEXTDOMAIN ),
__('Word count', FB_ADMINIMIZE_TEXTDOMAIN ),
__('Post Slug', FB_ADMINIMIZE_TEXTDOMAIN),
__('Publish Actions', FB_ADMINIMIZE_TEXTDOMAIN ),
__('Discussion'),
__('HTML Editor Button')
);
foreach ( $GLOBALS['_wp_post_type_features'][$post_type] as $post_type_support => $key ) {
if ( post_type_supports( $post_type, $post_type_support ) )
array_push( $metaboxes_names, ucfirst($post_type_support) );
}
if ( function_exists('current_theme_supports') &&
current_theme_supports( 'post-thumbnails', 'post' )
)
array_push($metaboxes_names, __('Post Thumbnail', FB_ADMINIMIZE_TEXTDOMAIN) );
if (function_exists('sticky_add_meta_box'))
array_push($metaboxes_names, 'Post Sticky Status');
// quick edit names
$quickedit_names = array(
'<strong>' .__('Quick Edit Link', FB_ADMINIMIZE_TEXTDOMAIN) . '</strong>',
__('QE', FB_ADMINIMIZE_TEXTDOMAIN) . ' ' . __('Inline Edit Left', FB_ADMINIMIZE_TEXTDOMAIN),
' QE ⇒' . ' ' . __('All Labels', FB_ADMINIMIZE_TEXTDOMAIN),
' QE ⇒' . ' ' . __('Author'),
' QE ⇒' . ' ' . __('Password and Private', FB_ADMINIMIZE_TEXTDOMAIN),
__('QE', FB_ADMINIMIZE_TEXTDOMAIN) . ' ' . __('Inline Edit Center', FB_ADMINIMIZE_TEXTDOMAIN),
' QE ⇒' . ' ' . __('Categories Title', FB_ADMINIMIZE_TEXTDOMAIN),
' QE ⇒' . ' ' . __('Categories List', FB_ADMINIMIZE_TEXTDOMAIN),
__('QE', FB_ADMINIMIZE_TEXTDOMAIN) . ' ' . __('Inline Edit Right', FB_ADMINIMIZE_TEXTDOMAIN),
' QE ⇒' . ' ' . __('Tags'),
' QE ⇒' . ' ' . __('Status, Sticky', FB_ADMINIMIZE_TEXTDOMAIN),
__('QE', FB_ADMINIMIZE_TEXTDOMAIN) . ' ' . __('Cancel/Save Button', FB_ADMINIMIZE_TEXTDOMAIN)
);
$metaboxes_names = array_merge($metaboxes_names, $quickedit_names);
// add own post options
$_mw_adminimize_own_values_[$post_type] = _mw_adminimize_get_option_value(
'_mw_adminimize_own_values_' . $post_type
);
$_mw_adminimize_own_values_[$post_type] = preg_split( "/\r\n/", $_mw_adminimize_own_values_[$post_type] );
foreach ( (array) $_mw_adminimize_own_values_[$post_type] as $key => $_mw_adminimize_own_value_[$post_type] ) {
$_mw_adminimize_own_value_[$post_type] = trim( $_mw_adminimize_own_value_[$post_type] );
array_push( $metaboxes, $_mw_adminimize_own_value_[$post_type] );
}
$_mw_adminimize_own_options_[$post_type] = _mw_adminimize_get_option_value(
'_mw_adminimize_own_options_' . $post_type
);
$_mw_adminimize_own_options_[$post_type] = preg_split( "/\r\n/", $_mw_adminimize_own_options_[$post_type] );
foreach ( (array) $_mw_adminimize_own_options_[$post_type] as $key => $_mw_adminimize_own_option_[$post_type] ) {
$_mw_adminimize_own_option_[$post_type] = trim( $_mw_adminimize_own_option_[$post_type] );
array_push( $metaboxes_names, $_mw_adminimize_own_option_[$post_type] );
}
$x = 0;
$class = '';
foreach ($metaboxes as $index => $metabox) {
if ( '' != $metabox ) {
$class = ( ' class="alternate"' == $class ) ? '' : ' class="alternate"';
$checked_user_role_ = array();
foreach ($user_roles as $role) {
$disabled_metaboxes_[$post_type . '_' . $role] = _mw_adminimize_get_option_value(
'mw_adminimize_disabled_metaboxes_' . $post_type . '_' . $role . '_items'
);
$checked_user_role_[$post_type . '_' . $role] = (
isset($disabled_metaboxes_[$post_type . '_' . $role]) &&
in_array($metabox, $disabled_metaboxes_[$post_type . '_' . $role])
) ? ' checked="checked"' : '';
}
echo '<tr' . $class . '>' . "\n";
echo '<td>' . $metaboxes_names[$index] .
' <span style="color:#ccc; font-weight: 400;">(' . $metabox . ')</span> </td>' . "\n";
foreach ($user_roles as $role) {
echo '<td class="num"><input id="check_' .
$post_type . $role . $x .'" type="checkbox"' .
$checked_user_role_[$post_type . '_' . $role] .
' name="mw_adminimize_disabled_metaboxes_' . $post_type .
'_'. $role .'_items[]" value="' . $metabox . '" /></td>' . "\n";
}
echo '</tr>' . "\n";
$x ++;
}
}
?>
</tbody>
</table>
<?php
//your own post options
?>
<br style="margin-top: 10px;" />
<table summary="config_own_post" class="widefat">
<thead>
<tr>
<th>
<?php echo sprintf( __('Your own %s options', FB_ADMINIMIZE_TEXTDOMAIN ), $post_type_object->label );
echo '<br />'; _e('ID or class', FB_ADMINIMIZE_TEXTDOMAIN ); ?>
</th>
<th><?php echo '<br />'; _e('Option', FB_ADMINIMIZE_TEXTDOMAIN ); ?></th>
</tr>
</thead>
<tbody>
<tr valign="top">
<td colspan="2">
<?php _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.', FB_ADMINIMIZE_TEXTDOMAIN ); ?>
</td>
</tr>
<tr valign="top">
<td>
<textarea name="_mw_adminimize_own_options_<?php echo $post_type; ?>"
cols="60" rows="3"
id="_mw_adminimize_own_options_<?php echo $post_type; ?>"
style="width: 95%;" ><?php echo _mw_adminimize_get_option_value('_mw_adminimize_own_options_' . $post_type ); ?></textarea>
<br />
<?php _e('Possible nomination for ID or class. Separate multiple nominations through a carriage return.', FB_ADMINIMIZE_TEXTDOMAIN ); ?>
</td>
<td>
<textarea class="code" name="_mw_adminimize_own_values_<?php echo $post_type; ?>"
cols="60" rows="3"
id="_mw_adminimize_own_values_<?php echo $post_type; ?>"
style="width: 95%;" ><?php echo _mw_adminimize_get_option_value('_mw_adminimize_own_values_' . $post_type ); ?></textarea>
<br />
<?php _e('Possible IDs or classes. Separate multiple values through a carriage return.', FB_ADMINIMIZE_TEXTDOMAIN ); ?>
</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 _e('Update Options', FB_ADMINIMIZE_TEXTDOMAIN ); ?> »" />
<input type="hidden" name="page_options" value="'dofollow_timeout'" />
</p>
<p><a class="alignright button" href="javascript:void(0);"
onclick="window.scrollTo(0,0);" style="margin:3px 0 0 30px;">
<?php _e('scroll to top', FB_ADMINIMIZE_TEXTDOMAIN); ?></a>
<br class="clear" />
</p>
</div>
</div>
</div>
<?php } // end foreach ?>