Changeset 657541
- Timestamp:
- 01/23/2013 06:57:40 PM (13 years ago)
- File:
-
- 1 edited
-
wp-fontsize/trunk/wp_fontsize.php (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
wp-fontsize/trunk/wp_fontsize.php
r620031 r657541 8 8 Author URI: http://mycircletree.com/ 9 9 */ 10 10 defined ('WP_FONTSIZE_CSS') or define('WP_FONTSIZE_CSS', true); 11 defined ('WP_FONTSIZE_HTML') or define('WP_FONTSIZE_HTML', true); 11 12 class wp_fontsize { 12 13 const SESSION_KEY = 'wp_fontsize'; … … 115 116 </style> 116 117 <?php } 117 p rivatefunction html () { ?>118 public static function html () { ?> 118 119 <div class="wp_fontsize_wrapper" id="wp_fontsize_wrapper"> 119 120 <label title="Adjust the font size of the website">Font Size:</label> … … 173 174 function footer () { 174 175 ob_start(array($this, 'min')); 175 $this->html(); 176 $this->css(); 176 if (WP_FONTSIZE_HTML) 177 $this->html(); 178 if (WP_FONTSIZE_CSS) 179 $this->css(); 177 180 $this->js(); 178 181 ob_end_flush();
Note: See TracChangeset
for help on using the changeset viewer.