Changeset 9903
- Timestamp:
- 11/26/2008 01:51:25 PM (16 years ago)
- Location:
- trunk/wp-admin
- Files:
-
- 1 added
- 52 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-admin/admin-header.php
r9847 r9903 113 113 114 114 screen_meta($hook_suffix); 115 unset($hook_suffix);115 //unset($hook_suffix); 116 116 117 117 if ( $parent_file == 'options-general.php' ) { -
trunk/wp-admin/categories.php
r9779 r9903 131 131 132 132 <div class="wrap nosubsub"> 133 <?php screen_icon(); ?> 133 134 <h2><?php echo wp_specialchars( $title ); ?></h2> 134 135 -
trunk/wp-admin/css/colors-fresh.css
r9894 r9903 1521 1521 text-shadow: rgba(255,255,255,0.7) 0 1px 0; 1522 1522 } 1523 1524 #icon-edit, 1525 #icon-post { 1526 background: transparent url(../images/icons32.png) no-repeat -552px -5px; 1527 } 1528 1529 #icon-index { 1530 background: transparent url(../images/icons32.png) no-repeat -137px -5px; 1531 } 1532 1533 #icon-upload { 1534 background: transparent url(../images/icons32.png) no-repeat -251px -5px; 1535 } 1536 1537 #icon-link-manager, 1538 #icon-link { 1539 background: transparent url(../images/icons32.png) no-repeat -190px -5px; 1540 } 1541 1542 #icon-edit-pages, 1543 #icon-page { 1544 background: transparent url(../images/icons32.png) no-repeat -312px -5px; 1545 } 1546 1547 #icon-edit-comments { 1548 background: transparent url(../images/icons32.png) no-repeat -72px -5px; 1549 } 1550 1551 #icon-themes { 1552 background: transparent url(../images/icons32.png) no-repeat -11px -5px; 1553 } 1554 1555 #icon-plugins { 1556 background: transparent url(../images/icons32.png) no-repeat -370px -5px; 1557 } 1558 1559 #icon-users 1560 #icon-user-edit { 1561 background: transparent url(../images/icons32.png) no-repeat -600px -5px; 1562 } 1563 1564 #icon-import, 1565 #icon-admin { 1566 background: transparent url(../images/icons32.png) no-repeat -432px -5px; 1567 } 1568 1569 #icon-options-general { 1570 background: transparent url(../images/icons32.png) no-repeat -492px -5px; 1571 } -
trunk/wp-admin/edit-comments.php
r9807 r9903 86 86 87 87 <div class="wrap"> 88 <?php screen_icon(); ?> 88 89 <h2><?php echo wp_specialchars( $title ); ?></h2> 89 90 -
trunk/wp-admin/edit-form-advanced.php
r9879 r9903 508 508 509 509 <div class="wrap"> 510 <?php screen_icon(); ?> 510 511 <h2><?php echo wp_specialchars( $title ); ?></h2> 511 512 <?php if ( $notice ) : ?> -
trunk/wp-admin/edit-link-categories.php
r9757 r9903 61 61 62 62 <div class="wrap nosubsub"> 63 <?php screen_icon(); ?> 63 64 <h2><?php echo wp_specialchars( $title ); ?></h2> 64 65 -
trunk/wp-admin/edit-link-form.php
r9716 r9903 342 342 343 343 <div class="wrap"> 344 <?php screen_icon(); ?> 344 345 <h2><?php echo wp_specialchars( $title ); ?></h2> 345 346 -
trunk/wp-admin/edit-page-form.php
r9806 r9903 392 392 393 393 <div class="wrap"> 394 <?php screen_icon(); ?> 394 395 <h2><?php echo wp_specialchars( $title ); ?></h2> 395 396 -
trunk/wp-admin/edit-pages.php
r9895 r9903 100 100 101 101 <div class="wrap"> 102 <?php screen_icon(); ?> 102 103 <h2><?php echo wp_specialchars( $title ); ?></h2> 103 104 -
trunk/wp-admin/edit-tags.php
r9848 r9903 130 130 131 131 <div class="wrap nosubsub"> 132 <?php screen_icon(); ?> 132 133 <h2><?php echo wp_specialchars( $title ); ?></h2> 133 134 -
trunk/wp-admin/edit.php
r9891 r9903 92 92 93 93 <div class="wrap"> 94 <?php screen_icon(); ?> 94 95 <h2><?php echo wp_specialchars( $title ); ?></h2> 95 96 -
trunk/wp-admin/export.php
r9369 r9903 24 24 25 25 <div class="wrap"> 26 <?php screen_icon(); ?> 26 27 <h2><?php echo wp_specialchars( $title ); ?></h2> 27 28 -
trunk/wp-admin/import.php
r9733 r9903 14 14 15 15 <div class="wrap"> 16 <?php screen_icon(); ?> 16 17 <h2><?php echo wp_specialchars( $title ); ?></h2> 17 18 <p><?php _e('If you have posts or comments in another system, WordPress can import those into this blog. To get started, choose a system to import from below:'); ?></p> -
trunk/wp-admin/import/blogger.php
r9716 r9903 55 55 56 56 echo " 57 <div class='wrap'><h2>$title</h2><p>$welcome</p><p>$prereqs</p><p>$stepone</p> 57 <div class='wrap'> 58 ".screen_icon()." 59 <h2>$title</h2> 60 <p>$welcome</p><p>$prereqs</p><p>$stepone</p> 58 61 <form action='$auth_url' method='get'> 59 62 <p class='submit' style='text-align:left;'> … … 69 72 70 73 function uh_oh($title, $message, $info) { 71 echo "<div class='wrap'><h2>$title</h2><p>$message</p><pre>$info</pre></div>"; 74 echo "<div class='wrap'>"; 75 screen_icon(); 76 echo "<h2>$title</h2><p>$message</p><pre>$info</pre></div>"; 72 77 } 73 78 -
trunk/wp-admin/import/blogware.php
r8645 r9903 22 22 function header() { 23 23 echo '<div class="wrap">'; 24 screen_icon(); 24 25 echo '<h2>'.__('Import Blogware').'</h2>'; 25 26 } -
trunk/wp-admin/import/btt.php
r9369 r9903 19 19 function header() { 20 20 echo '<div class="wrap">'; 21 screen_icon(); 21 22 echo '<h2>'.__('Import Bunny’s Technorati Tags').'</h2>'; 22 23 echo '<p>'.__('Steps may take a few minutes depending on the size of your database. Please be patient.').'<br /><br /></p>'; -
trunk/wp-admin/import/dotclear.php
r9369 r9903 199 199 { 200 200 echo '<div class="wrap">'; 201 screen_icon(); 201 202 echo '<h2>'.__('Import DotClear').'</h2>'; 202 203 echo '<p>'.__('Steps may take a few minutes depending on the size of your database. Please be patient.').'</p>'; -
trunk/wp-admin/import/greymatter.php
r9369 r9903 21 21 function header() { 22 22 echo '<div class="wrap">'; 23 screen_icon(); 23 24 echo '<h2>'.__('Import GreyMatter').'</h2>'; 24 25 } -
trunk/wp-admin/import/jkw.php
r9369 r9903 18 18 function header() { 19 19 echo '<div class="wrap">'; 20 screen_icon(); 20 21 echo '<h2>'.__('Import Jerome’s Keywords').'</h2>'; 21 22 echo '<p>'.__('Steps may take a few minutes depending on the size of your database. Please be patient.').'<br /><br /></p>'; -
trunk/wp-admin/import/livejournal.php
r8645 r9903 20 20 function header() { 21 21 echo '<div class="wrap">'; 22 screen_icon(); 22 23 echo '<h2>'.__('Import LiveJournal').'</h2>'; 23 24 } -
trunk/wp-admin/import/mt.php
r9716 r9903 25 25 function header() { 26 26 echo '<div class="wrap">'; 27 screen_icon(); 27 28 echo '<h2>'.__('Import Movable Type or TypePad').'</h2>'; 28 29 } … … 192 193 ?> 193 194 <div class="wrap"> 195 <?php screen_icon(); ?> 194 196 <h2><?php _e('Assign Authors'); ?></h2> 195 197 <p><?php _e('To make it easier for you to edit and save the imported posts and drafts, you may want to change the name of the author of the posts. For example, you may want to import all the entries as admin\'s entries.'); ?></p> -
trunk/wp-admin/import/rss.php
r8645 r9903 23 23 function header() { 24 24 echo '<div class="wrap">'; 25 screen_icon(); 25 26 echo '<h2>'.__('Import RSS').'</h2>'; 26 27 } -
trunk/wp-admin/import/stp.php
r9369 r9903 17 17 function header() { 18 18 echo '<div class="wrap">'; 19 screen_icon(); 19 20 echo '<h2>'.__('Import Simple Tagging').'</h2>'; 20 21 echo '<p>'.__('Steps may take a few minutes depending on the size of your database. Please be patient.').'<br /><br /></p>'; -
trunk/wp-admin/import/textpattern.php
r9369 r9903 53 53 { 54 54 echo '<div class="wrap">'; 55 screen_icon(); 55 56 echo '<h2>'.__('Import Textpattern').'</h2>'; 56 57 echo '<p>'.__('Steps may take a few minutes depending on the size of your database. Please be patient.').'</p>'; -
trunk/wp-admin/import/utw.php
r9369 r9903 18 18 function header() { 19 19 echo '<div class="wrap">'; 20 screen_icon(); 20 21 echo '<h2>'.__('Import Ultimate Tag Warrior').'</h2>'; 21 22 echo '<p>'.__('Steps may take a few minutes depending on the size of your database. Please be patient.').'<br /><br /></p>'; -
trunk/wp-admin/import/wordpress.php
r9372 r9903 35 35 function header() { 36 36 echo '<div class="wrap">'; 37 screen_icon(); 37 38 echo '<h2>'.__('Import WordPress').'</h2>'; 38 39 } … … 198 199 function wp_authors_form() { 199 200 ?> 201 <?php screen_icon(); ?> 200 202 <h2><?php _e('Assign Authors'); ?></h2> 201 203 <p><?php _e('To make it easier for you to edit and save the imported posts and drafts, you may want to change the name of the author of the posts. For example, you may want to import all the entries as <code>admin</code>s entries.'); ?></p> … … 221 223 ?> 222 224 </ol> 225 <?php screen_icon(); ?> 223 226 <h2><?php _e('Import Attachments'); ?></h2> 224 227 <p> -
trunk/wp-admin/import/wp-cat2tag.php
r8645 r9903 65 65 66 66 if ( $cat_num > 0 ) { 67 screen_icon(); 67 68 echo '<h2>' . sprintf( __ngettext( 'Convert Category to Tag.', 'Convert Categories (%d) to Tags.', $cat_num ), $cat_num ) . '</h2>'; 68 69 echo '<div class="narrow">'; … … 140 141 141 142 if ( $tags_num > 0 ) { 143 screen_icon(); 142 144 echo '<h2>' . sprintf( __ngettext( 'Convert Tag to Category.', 'Convert Tags (%d) to Categories.', $tags_num ), $tags_num ) . '</h2>'; 143 145 echo '<div class="narrow">'; -
trunk/wp-admin/includes/template.php
r9884 r9903 3328 3328 } 3329 3329 3330 function screen_icon() { 3331 global $parent_file, $hook_suffix; 3332 3333 if ( isset($parent_file) && !empty($parent_file) ) 3334 $name = substr($parent_file, 0, -4); 3335 else 3336 $name = str_replace(array('.php', '-new', '-add'), '', $hook_suffix); 3337 3338 unset($hook_suffix); 3330 3339 ?> 3340 <div id="icon-<?php echo $name; ?>" class="icon32"><br /></div> 3341 <?php 3342 } 3343 3344 ?> -
trunk/wp-admin/index.php
r9620 r9903 30 30 31 31 <div class="wrap"> 32 <?php screen_icon(); ?> 32 33 <h2><?php echo wp_specialchars( $title ); ?></h2> 33 34 -
trunk/wp-admin/link-manager.php
r9871 r9903 71 71 72 72 <div class="wrap nosubsub"> 73 <?php screen_icon(); ?> 73 74 <h2><?php echo wp_specialchars( $title ); ?></h2> 74 75 -
trunk/wp-admin/media-upload.php
r9894 r9903 57 57 require_once('admin-header.php'); ?> 58 58 <div class="wrap"> 59 <?php screen_icon(); ?> 59 60 <h2><?php echo wp_specialchars( $title ); ?></h2> 60 61 -
trunk/wp-admin/options-discussion.php
r9456 r9903 17 17 18 18 <div class="wrap"> 19 <?php screen_icon(); ?> 19 20 <h2><?php echo wp_specialchars( $title ); ?></h2> 20 21 -
trunk/wp-admin/options-general.php
r9742 r9903 50 50 51 51 <div class="wrap"> 52 <?php screen_icon(); ?> 52 53 <h2><?php echo wp_specialchars( $title ); ?></h2> 53 54 -
trunk/wp-admin/options-media.php
r9843 r9903 18 18 19 19 <div class="wrap"> 20 <?php screen_icon(); ?> 20 21 <h2><?php echo wp_specialchars( $title ); ?></h2> 21 22 -
trunk/wp-admin/options-misc.php
r9390 r9903 18 18 19 19 <div class="wrap"> 20 <?php screen_icon(); ?> 20 21 <h2><?php echo wp_specialchars( $title ); ?></h2> 21 22 -
trunk/wp-admin/options-permalink.php
r9658 r9903 124 124 125 125 <div class="wrap"> 126 <?php screen_icon(); ?> 126 127 <h2><?php echo wp_specialchars( $title ); ?></h2> 127 128 -
trunk/wp-admin/options-privacy.php
r9369 r9903 17 17 18 18 <div class="wrap"> 19 <?php screen_icon(); ?> 19 20 <h2><?php echo wp_specialchars( $title ); ?></h2> 20 21 -
trunk/wp-admin/options-reading.php
r9390 r9903 17 17 18 18 <div class="wrap"> 19 <?php screen_icon(); ?> 19 20 <h2><?php echo wp_specialchars( $title ); ?></h2> 20 21 -
trunk/wp-admin/options-writing.php
r9658 r9903 17 17 18 18 <div class="wrap"> 19 <?php screen_icon(); ?> 19 20 <h2><?php echo wp_specialchars( $title ); ?></h2> 20 21 -
trunk/wp-admin/plugin-editor.php
r9233 r9903 97 97 <?php endif; ?> 98 98 <div class="wrap"> 99 <h2><?php echo wp_specialchars( $title ); ?></h2> 99 <?php screen_icon(); ?> 100 <h2><?php echo wp_specialchars( $title ); ?></h2> 100 101 101 102 <div class="tablenav"> -
trunk/wp-admin/plugin-install.php
r9233 r9903 53 53 ?> 54 54 <div class="wrap"> 55 <?php screen_icon(); ?> 55 56 <h2><?php echo wp_specialchars( $title ); ?></h2> 56 57 -
trunk/wp-admin/plugins.php
r9733 r9903 202 202 203 203 <div class="wrap"> 204 <?php screen_icon(); ?> 204 205 <h2><?php echo wp_specialchars( $title ); ?></h2> 205 206 -
trunk/wp-admin/theme-editor.php
r9369 r9903 100 100 ?> 101 101 <div class="wrap"> 102 <?php screen_icon(); ?> 102 103 <h2><?php echo wp_specialchars( $title ); ?></h2> 103 104 <div class="bordertitle"> -
trunk/wp-admin/themes.php
r9746 r9903 101 101 102 102 <div class="wrap"> 103 <?php screen_icon(); ?> 103 104 <h2><?php echo wp_specialchars( $title ); ?></h2> 104 105 -
trunk/wp-admin/turbo.php
r9657 r9903 18 18 ?> 19 19 <div id="gears-info-box" class="wrap"> 20 <?php screen_icon(); ?> 20 21 <h2><?php echo wp_specialchars( $title ); ?></h2> 21 22 -
trunk/wp-admin/update-core.php
r9698 r9903 89 89 function core_upgrade_preamble() { 90 90 $updates = get_core_updates(); 91 92 echo '<div class="wrap">'; 93 echo '<h2>' . __('Upgrade WordPress') . '</h2>'; 94 91 ?> 92 <div class="wrap"> 93 <?php screen_icon(); ?> 94 <h2><?php _e('Upgrade WordPress'); ?></h2> 95 <?php 95 96 if ( !isset($updates[0]->response) || 'latest' == $updates[0]->response ) { 96 97 echo '<h3>'; … … 147 148 return; 148 149 } 149 150 echo '<div class="wrap">'; 151 echo '<h2>' . __('Upgrade WordPress') . '</h2>'; 150 ?> 151 <div class="wrap"> 152 <?php screen_icon(); ?> 153 <h2><?php _e('Upgrade WordPress'); ?></h2> 154 <?php 152 155 if ( $wp_filesystem->errors->get_error_code() ) { 153 156 foreach ( $wp_filesystem->errors->get_error_messages() as $message ) -
trunk/wp-admin/upload.php
r9807 r9903 164 164 165 165 <div class="wrap"> 166 <?php screen_icon(); ?> 166 167 <h2><?php echo wp_specialchars( $title ); ?></h2> 167 168 -
trunk/wp-admin/user-edit.php
r9746 r9903 177 177 178 178 <div class="wrap" id="profile-page"> 179 <h2><?php echo wp_specialchars( $title ); ?></h2> 179 <?php screen_icon(); ?> 180 <h2><?php echo wp_specialchars( $title ); ?></h2> 180 181 181 182 <form id="your-profile" action="" method="post"> -
trunk/wp-admin/user-new.php
r9699 r9903 43 43 ?> 44 44 <div class="wrap"> 45 <?php screen_icon(); ?> 45 46 <h2 id="add-new-user"><?php _e('Add New User') ?></h2> 46 47 -
trunk/wp-admin/users.php
r9814 r9903 238 238 239 239 <div class="wrap"> 240 <?php screen_icon(); ?> 240 241 <h2><?php echo wp_specialchars( $title ); ?></h2> 241 242 -
trunk/wp-admin/widgets.php
r9369 r9903 234 234 235 235 <div class="wrap"> 236 <?php screen_icon(); ?> 236 237 <h2><?php echo wp_specialchars( $title ); ?></h2> 237 238 -
trunk/wp-admin/wp-admin.css
r9894 r9903 1215 1215 width: 100%; 1216 1216 margin-bottom: -8px; 1217 clear: both; 1217 1218 } 1218 1219 … … 3112 3113 } 3113 3114 3115 .icon32 { 3116 float: left; 3117 height: 36px; 3118 margin: 8px 6px 0 0; 3119 width: 36px; 3120 }
Note: See TracChangeset
for help on using the changeset viewer.