Changeset 1403333
- Timestamp:
- 04/24/2016 04:05:36 PM (10 years ago)
- Location:
- kush-micro-news/trunk
- Files:
-
- 5 edited
-
includes/admin.php (modified) (27 diffs)
-
includes/core.php (modified) (9 diffs)
-
index.php (modified) (7 diffs)
-
readme.txt (modified) (2 diffs)
-
uninstall.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
kush-micro-news/trunk/includes/admin.php
r1334630 r1403333 37 37 update_option( "kush_mn_num_news",$num); 38 38 39 $what= 'Changes Saved !';39 $what=__('Changes saved!', 'kush-mn-plugin'); 40 40 } 41 41 else 42 42 { 43 43 update_option( "kush_mn_num_news",'5'); 44 echo _e('<h4>Number of post cannot left blank, reverted to default.</h4>' );44 echo _e('<h4>Number of post cannot left blank, reverted to default.</h4>', 'kush-mn-plugin'); 45 45 } 46 46 } 47 47 48 48 if(isset($_POST['chkLoadNav'])) 49 {if($_POST['chkLoadNav']==true)49 { if($_POST['chkLoadNav']==true) 50 50 update_option( "kush_mn_load_nav",'true'); 51 52 $what= 'Changes Saved !';53 }51 52 $what=__('Changes saved!', 'kush-mn-plugin'); 53 } 54 54 else 55 55 update_option( "kush_mn_load_nav",'false'); 56 57 if(isset($_POST['chkLoadNewTab'])) 58 { 59 if($_POST['chkLoadNewTab'] == true) 60 update_option( "kush_mn_load_newtab",'true'); 61 62 $what=__('Changes saved!', 'kush-mn-plugin'); 63 } 64 else 65 update_option( "kush_mn_load_newtab",'false'); 66 56 67 57 68 if(isset($_POST['chkLoadNavSwap'])) … … 59 70 update_option( "kush_mn_load_nav_swap",'true'); 60 71 61 $what='Changes Saved !';72 $what=__('Changes saved!', 'kush-mn-plugin'); 62 73 } 63 74 else … … 70 81 if($_POST['myRename']!='') 71 82 { update_option("kush_mn_widget_name", htmlspecialchars($_POST['myRename'])); 72 $what='Changes Saved !';83 $what=__('Changes saved!', 'kush-mn-plugin'); 73 84 } 74 85 else … … 86 97 if($_POST['fullStoryText']!='') 87 98 {update_option("kush_mn_read_story_text", htmlspecialchars($_POST['fullStoryText'])); 88 $what='Changes Saved !';99 $what=__('Changes saved!', 'kush-mn-plugin'); 89 100 } 90 101 else … … 99 110 update_option( "kush_mn_show_lborder",'true'); 100 111 101 $what='Changes Saved !';112 $what=__('Changes saved!', 'kush-mn-plugin'); 102 113 } 103 114 else … … 108 119 update_option( "kush_mn_show_linkclean",'true'); 109 120 110 $what='Changes Saved !';121 $what=__('Changes saved!', 'kush-mn-plugin'); 111 122 } 112 123 else … … 117 128 update_option( "kush_mn_parse_html",'true'); 118 129 119 $what='Changes Saved !';130 $what=__('Changes saved!', 'kush-mn-plugin'); 120 131 } 121 132 else … … 126 137 { 127 138 update_option( "kush_mn_color_text",$_POST['textColor']); 128 $what='Changes Saved !';139 $what=__('Changes saved!', 'kush-mn-plugin'); 129 140 } 130 141 … … 132 143 { 133 144 update_option( "kush_mn_color_title",$_POST['titleColor']); 134 $what='Changes Saved !';145 $what=__('Changes saved!', 'kush-mn-plugin'); 135 146 } 136 147 … … 138 149 { 139 150 update_option( "kush_mn_color_link",$_POST['linkColorField']); 140 $what='Changes Saved !';151 $what=__('Changes saved!', 'kush-mn-plugin'); 141 152 } 142 153 … … 144 155 { 145 156 update_option( "kush_mn_head_textColor",$_POST['headTextColor']); 146 $what='Changes Saved !';157 $what=__('Changes saved!', 'kush-mn-plugin'); 147 158 } 148 159 … … 150 161 { 151 162 update_option( "kush_mn_head_highlightColor",$_POST['headHighlightColor']); 152 $what='Changes Saved !';163 $what=__('Changes saved!', 'kush-mn-plugin'); 153 164 } 154 165 … … 156 167 { 157 168 update_option( "kush_mn_head_back",$_POST['headBack']); 158 $what='Changes Saved !';169 $what=__('Changes saved!', 'kush-mn-plugin'); 159 170 } 160 171 … … 164 175 update_option( "kush_mn_editor_access",'true'); 165 176 166 $what='Changes Saved !';177 $what=__('Changes saved!', 'kush-mn-plugin'); 167 178 } 168 179 else … … 173 184 <div class="wrap"> 174 185 <div class="icon32" id="icon-options-general"> <br /> </div> 175 <h2> Micro News Settings</h2>186 <h2><?php _e('Micro News Settings', 'kush-mn-plugin');?></h2> 176 187 <?php echo ($what!='')?'<div class="updated"><p><strong>'.$what.'</strong></p></div>':''; ?> 177 188 <br/> 178 189 <form action="" method="post" id="mirco-news-config"> 179 <h3> Functional :</h3>180 <div class="options"> 181 <label for="numPost"> Number of news to display:</label>190 <h3><?php _e('Functional', 'kush-mn-plugin');?></h3> 191 <div class="options"> 192 <label for="numPost"><?php _e('Number of news to display', 'kush-mn-plugin');?>:</label> 182 193 <input type="text" name="numPost" value="<?php echo get_option( "kush_mn_num_news");?>"/> 183 194 <h5 style="display:inline-block;margin:0;">(via kush_micro_news_output() function)</h5> 184 195 </div> 185 196 <div class="options"> 186 <label for="chkLoadNav"> Load More navigation:</label>197 <label for="chkLoadNav"><?php _e('Load More navigation', 'kush-mn-plugin');?>:</label> 187 198 <input type="checkbox" name="chkLoadNav" <?php $lnav=get_option('kush_mn_load_nav');if($lnav=='true'){echo 'checked';}?>/> 188 199 </div> 189 200 <div class="options"> 190 <label for="chkLoadNavSwap">Swap news when navigating:</label> 201 <label for="chkLoadNewTab"><?php _e('Open link in new tab', 'kush-mn-plugin');?>:</label> 202 <input type="checkbox" name="chkLoadNewTab" <?php if( get_option('kush_mn_load_newtab', 'true') == 'true'){echo 'checked';}?>/> 203 </div> 204 <div class="options"> 205 <label for="chkLoadNavSwap"><?php _e('Swap news when navigating', 'kush-mn-plugin');?>:</label> 191 206 <input type="checkbox" name="chkLoadNavSwap" <?php $lnavSwap=get_option('kush_mn_load_nav_swap');if($lnavSwap=='true'){echo 'checked';}?>/> 192 <h5 style="display:inline-block;margin:0;"> Disabling this will append news when Load More is clicked.</h5>193 </div> 194 195 <h3> Header :</h3>196 <div class="options"> 197 <label for="myRename"> Title over news:</label>207 <h5 style="display:inline-block;margin:0;"><?php _e('Disabling this will append news when Load More is clicked.', 'kush-mn-plugin');?></h5> 208 </div> 209 210 <h3><?php _e('Header', 'kush-mn-plugin');?></h3> 211 <div class="options"> 212 <label for="myRename"><?php _e('Title over news', 'kush-mn-plugin');?>:</label> 198 213 <input type="text" name="myRename" value="<?php echo get_option("kush_mn_widget_name", "Micro News");?>"/> 199 214 <h5 style="display:inline-block;margin:0;">(Default: Micro News)</h5> 200 215 </div> 201 216 <div class="options"> 202 <label for="headTextColor"> Head Text Color:</label>217 <label for="headTextColor"><?php _e('Head Text Color', 'kush-mn-plugin');?>:</label> 203 218 <input type="text" name="headTextColor" value="<?php echo get_option('kush_mn_head_textColor','#FFFFFF');?>" /> 204 219 <select name="titleColorList" onclick="check_custom_color(this,'title')"> … … 217 232 </div> 218 233 <div class="options"> 219 <label for="headHighlightColor"> Head Highlight Color:</label>234 <label for="headHighlightColor"><?php _e('Head Highlight Color', 'kush-mn-plugin');?>:</label> 220 235 <input type="text" name="headHighlightColor" value="<?php echo get_option('kush_mn_head_highlightColor','#808080');?>" /> 221 236 <select name="titleColorList" onclick="check_custom_color(this,'title')"> … … 233 248 </div> 234 249 <div class="options"> 235 <label for="headBack"> Head Background Color:</label>250 <label for="headBack"><?php _e('Head Background Color', 'kush-mn-plugin');?>:</label> 236 251 <input type="text" name="headBack" value="<?php echo get_option('kush_mn_head_back','default');?>" /> 237 252 <select name="titleColorList" onclick="check_custom_color(this,'title')"> … … 248 263 </div> 249 264 250 <h3> Display :</h3>251 <div class="options"> 252 <label for="myRename"> Full Story Text:</label>265 <h3><?php _e('Display', 'kush-mn-plugin');?></h3> 266 <div class="options"> 267 <label for="myRename"><?php _e('Full Story Text', 'kush-mn-plugin');?>:</label> 253 268 <input type="text" name="fullStoryText" value="<?php echo get_option("kush_mn_read_story_text");?>"/> 254 269 <h5 style="display:inline-block;margin:0;">(Default: Read Full story »)</h5> 255 270 </div> 256 271 <div class="options"> 257 <label for="titleColor"> Title Color:</label>272 <label for="titleColor"><?php _e('Title Color', 'kush-mn-plugin');?>:</label> 258 273 <input type="text" name="titleColor" value="<?php echo get_option('kush_mn_color_title','#0066CC');?>" /> 259 274 <select name="titleColorList" onclick="check_custom_color(this,'title')"> … … 271 286 </div> 272 287 <div class="options"> 273 <label for="textColor"> Text Color:</label>288 <label for="textColor"><?php _e('Text Color', 'kush-mn-plugin');?>:</label> 274 289 <input type="text" name="textColor" value="<?php echo get_option('kush_mn_color_text', '#666666');?>" /> 275 290 <select name="textColorList" onclick="check_custom_color(this,'text')"> … … 286 301 </div> 287 302 <div class="options"> 288 <label for="linkColorField"> Link Color:</label>303 <label for="linkColorField"><?php _e('Link Color', 'kush-mn-plugin');?>:</label> 289 304 <input type="text" name="linkColorField" value="<?php echo get_option('kush_mn_color_link', '#000000');?>" /> 290 305 <select name="linkColorList" onclick="check_custom_color(this,'link')"> … … 301 316 </div> 302 317 <div class="options"> 303 <label for="chkBorder"> Enable colorful borders:</label>318 <label for="chkBorder"><?php _e('Enable colorful borders', 'kush-mn-plugin');?>:</label> 304 319 <input type="checkbox" name="chkBorder" <?php $sBor=get_option('kush_mn_show_lborder');if($sBor=='true'){echo 'checked';}?>/> 305 320 </div> 306 321 <div class="options"> 307 <label for="chkHover"> Enable link hover effect:</label>322 <label for="chkHover"><?php _e('Enable link hover effect', 'kush-mn-plugin');?>:</label> 308 323 <input type="checkbox" name="chkHover" <?php $lHov=get_option('kush_mn_show_linkclean');if($lHov=='true'){echo 'checked';}?>/> 309 324 </div> 310 325 311 <h3> Input :</h3>312 <div class="options"> 313 <label for="chkHtmlParse"> HTML parsing while adding news:</label>326 <h3><?php _e('Input', 'kush-mn-plugin');?></h3> 327 <div class="options"> 328 <label for="chkHtmlParse"><?php _e('HTML parsing while adding news', 'kush-mn-plugin');?>:</label> 314 329 <input type="checkbox" name="chkHtmlParse" <?php $lHov=get_option('kush_mn_parse_html');if($lHov=='true'){echo 'checked';}?>/> 315 <h5 style="display:inline-block;margin:0;">( Try not to use improper markup if HTML parsing is enabled otherwise it could break up your whole site.)</h5>316 </div> 317 318 <h3> Access :</h3>319 <div class="options"> 320 <label for="editorAccess"> Enable access to Editors:</label>330 <h5 style="display:inline-block;margin:0;">(<?php _e('Try not to use improper markup if HTML parsing is enabled otherwise it could break up your whole site.', 'kush-mn-plugin');?>)</h5> 331 </div> 332 333 <h3><?php _e('Access', 'kush-mn-plugin');?></h3> 334 <div class="options"> 335 <label for="editorAccess"><?php _e('Enable access to Editors', 'kush-mn-plugin');?>:</label> 321 336 <input type="checkbox" name="editorAccess" <?php $lHov=get_option('kush_mn_editor_access');if($lHov=='true'){echo 'checked';}?>/> 322 <h5 style="display:inline-block;margin:0;">( Users with access level of editor.)</h5>337 <h5 style="display:inline-block;margin:0;">(<?php _e('Users with access level of editor.', 'kush-mn-plugin');?>)</h5> 323 338 </div> 324 339 … … 327 342 <input type="submit" value="Save Changes" class="button-primary"/> 328 343 <br><hr> 329 Download Backup of your Micro News data : <a href="?backup=true" target="_blank" class="button-primary">Download</a>344 <?php _e('Download Backup of your Micro News data', 'kush-mn-plugin');?>: <a href="?backup=true" target="_blank" class="button-primary"><?php _e('Download', 'kush-mn-plugin');?></a> 330 345 331 346 332 347 <br><hr> 333 Update table storage: <a href="?updatedb=true" target="_blank" class="button-primary">Update</a>334 <h5 style="display:inline-block;margin:0;"> Create a backup first.</h5>348 <?php _e('Update table storage', 'kush-mn-plugin');?>: <a href="?updatedb=true" target="_blank" class="button-primary"><?php _e('Update', 'kush-mn-plugin');?></a> 349 <h5 style="display:inline-block;margin:0;"><?php _e('Create a backup first.', 'kush-mn-plugin');?></h5> 335 350 </form> 336 351 <br><br> … … 369 384 if($rows_affected > 0) 370 385 { 371 $text .= "Updated Successfully! ";386 $text .= __('Updated Successfully!', 'kush-mn-plugin'); 372 387 update_option('kush_mn_db_version','1.1'); 373 388 } … … 387 402 if($ver == "1.0") 388 403 { 389 echo "<div class='update-nag'> URGENT: DATABASE UPDATE REQUIRED! Use button at the end of Settings page.</div>";404 echo "<div class='update-nag'>".__('URGENT: DATABASE UPDATE REQUIRED! Use button at the end of Settings page.', 'kush-mn-plugin')."</div>"; 390 405 } 391 406 } … … 442 457 443 458 if($rows_affected==true) 444 {?><div class="updated"><p><strong><?php _e('New Post Added.' ); ?></strong></p></div>'<?php }459 {?><div class="updated"><p><strong><?php _e('New Post Added.','kush-mn-plugin'); ?></strong></p></div>'<?php } 445 460 } 446 461 else 447 {$what= 'Don\'t you think atleast title is necessary.';}462 {$what=__('Don\'t you think atleast title is necessary.','kush-mn-plugin');} 448 463 } 449 464 … … 451 466 <div class="wrap"> 452 467 <div class="icon32" id="icon-tools"> <br /> </div> 453 <h2> Micro News Add New Post</h2>468 <h2><?php _e('Micro News Add New Post','kush-mn-plugin');?></h2> 454 469 455 470 <?php if($what!=''){echo '<h3>'.$what.'</h3>';}?> … … 458 473 <div> 459 474 <div class="row"> 460 <label for="k_mn_title"> Title:</label>475 <label for="k_mn_title"><?php _e('Title','kush-mn-plugin');?>:</label> 461 476 <input type="text" name="k_mn_title" placeholder="Title of News"/> 462 477 </div> 463 478 <div class="row"> 464 <label for="k_mn_content"> Content:</label>479 <label for="k_mn_content"><?php _e('Content','kush-mn-plugin');?>:</label> 465 480 <textarea name="k_mn_content" placeholder="Excerpt">.</textarea> 466 481 </div> 467 482 <div class="row"> 468 <label for="k_mn_link"> Link:</label>483 <label for="k_mn_link"><?php _e('Link','kush-mn-plugin');?>:</label> 469 484 <input type="text" name="k_mn_link" placeholder="Link Reference"/> 470 485 </div> 471 486 <?php if($dbver != '0' && $dbver != '1.0' && $dbver != '') :?> 472 487 <div class="row"> 473 <label for="k_mn_cat"> Category Key:</label>488 <label for="k_mn_cat"><?php _e('Category Key','kush-mn-plugin');?>:</label> 474 489 <!-- <input type="text" name="k_mn_cat" placeholder="Category Key:" value="default"/> --> 475 490 <select name="k_mn_cat"> -
kush-micro-news/trunk/includes/core.php
r1173366 r1403333 59 59 $loadNav = get_option('kush_mn_load_nav','true'); 60 60 $loadNavSwap = get_option('kush_mn_load_nav_swap','true'); 61 $loadNewTab = get_option('kush_mn_load_newtab','true'); 61 62 $readStoryText = get_option('kush_mn_read_story_text','Read Full story »'); 62 63 $dbver = get_option('kush_mn_db_version','0'); … … 121 122 //show text 122 123 $output_html .='<div class="text" style="color:'.$textColor.'">'.$row->text.' '; 123 $output_html .='<span class="postedOn"> on'.$formateddate.'</span>';124 $output_html .='<span class="postedOn">'.__('on', 'kush-mn-plugin').' '.$formateddate.'</span>'; 124 125 $output_html .='</div>'; 125 126 … … 127 128 if($row->url): 128 129 $output_html .='<span class="link '; 130 129 131 if($cleanHov!='true')//check if show link color inverted 130 132 $output_html .='clean'; 131 $output_html .='"><a href="'.$row->url.'" title="'.$row->name.'" target="_blank" style="color:'.$linkColor.'">'.$readStoryText.'</a></span>'; 133 134 $output_html .='"><a href="'.$row->url.'" title="'.$row->name.'" '; 135 136 if($loadNewTab == 'true') 137 $output_html .= 'target="_blank"'; 138 139 $output_html .= 'style="color:'.$linkColor.'">'.$readStoryText.'</a></span>'; 132 140 endif; 133 141 … … 206 214 207 215 if($chk) 208 $what= 'Updated Sucessfully.';216 $what= __('Updated successfully.', 'kush-mn-plugin'); 209 217 else 210 $what= 'Serious Error Occured :O';218 $what=__('Serious error occured.', 'kush-mn-plugin'); 211 219 212 220 } … … 218 226 219 227 if($chk) 220 $what= 'Deleted Sucessfully.';228 $what= __('Deleted successfully.', 'kush-mn-plugin'); 221 229 else 222 $what= 'Serious Error Occured :O';230 $what=__('Serious error occured.', 'kush-mn-plugin'); 223 231 } 224 232 … … 241 249 <h3></h3> 242 250 <div class="icon32" id="icon-edit"> <br /> </div> 243 <h2> Micro News Posts</h2>251 <h2><?php _e('Micro News Posts', 'kush-mn-plugin');?></h2> 244 252 245 253 <?php if($what!=''){echo '<div class="updated"><p>'.$what.'</p></div>';}?> … … 260 268 </div> 261 269 <div class="container-admin-meta-link"> 262 <span> <strong> on</strong> <?php $date=strtotime($row->time); echo date('d M Y',$date);?></span>270 <span> <strong><?php _e('on', 'kush-mn-plugin');?></strong> <?php $date=strtotime($row->time); echo date('d M Y',$date);?></span> 263 271 | 264 272 <?php if(empty($row->category) == false){ 265 echo '<strong> Category key: </strong><span id="mn-cat-'.$row->id.'">'.$row->category.'</span> | ';273 echo '<strong>'.__('Category key', 'kush-mn-plugin').': </strong><span id="mn-cat-'.$row->id.'">'.$row->category.'</span> | '; 266 274 }?> 267 <strong> Reference Link: </strong><span id="mn-link-<?php echo $row->id;?>"><?php echo $row->url;?></a></span>275 <strong><?php _e('Reference Link', 'kush-mn-plugin'); ?>: </strong><span id="mn-link-<?php echo $row->id;?>"><?php echo $row->url;?></a></span> 268 276 </div> 269 277 <input type="button" value="Edit" class="button-primary editB" data-id="mn-edit-<?php echo $row->id;?>"/> … … 281 289 if($totalpage>=1 && $page<$totalpage) 282 290 {?> 283 <ul class="micro-news-post-nav"><li style="border:0;"> Page: </li>291 <ul class="micro-news-post-nav"><li style="border:0;"><?php _e('Page', 'kush-mn-plugin');?> : </li> 284 292 <?php 285 293 for($z=1;$z<=$totalpage;$z++) … … 288 296 } 289 297 if($page!=1) 290 {echo '<li><a href="?page=micro-news&pgno=1"> Home</a></li>';}298 {echo '<li><a href="?page=micro-news&pgno=1">'.__('Home', 'kush-mn-plugin').'</a></li>';} 291 299 }// if closed 292 300 ?> -
kush-micro-news/trunk/index.php
r1334630 r1403333 3 3 Plugin Name: Kush Micro News 4 4 Description: Spread the news in shortest possible way. Use links to refer data and title to concise it. 5 Version: 1.6. 45 Version: 1.6.5 6 6 Author: Kush Sharma 7 7 Author Email: thekushsharma@gmail.com 8 8 Author URI: http://softnuke.com/ 9 9 Plugin URI: https://github.com/kushsharma/micro-news 10 Last Officially Updated: 24 Jan 2016 10 Text Domain: kush-mn-plugin 11 Domain Path: /lang/ 12 Last Officially Updated: 24 Apr 2016 11 13 */ 12 14 … … 26 28 add_action('admin_enqueue_scripts','kush_micronews_load_depen'); 27 29 30 function load_newsplugin_textdomain() { 31 load_plugin_textdomain( 'kush-mn-plugin', FALSE, basename( dirname( __FILE__ ) ) . '/lang/' ); 32 } 33 add_action( 'plugins_loaded', 'load_newsplugin_textdomain' ); 28 34 29 35 function kush_micronews_load_depen(){ … … 80 86 function KushMNWidget() { 81 87 // Instantiate the parent object 82 parent::__construct( 'kush-micro-news', 'Kush Micro News','description= Micro news data will output where this widget resides.');88 parent::__construct( 'kush-micro-news', 'Kush Micro News','description='.__('Micro news data will output where this widget resides.', 'kush-mn-plugin') ); 83 89 } 84 90 … … 123 129 <input type="text" size="5" id="<?php echo $this->get_field_id('no_news'); ?>" name="<?php echo $this->get_field_name('no_news'); ?>" value="<?php echo $instance['no_news']; ?>" /> 124 130 <label for="no_news"> 125 <?php _e('Number of news' ); ?>131 <?php _e('Number of news', 'kush-mn-plugin'); ?> 126 132 </label> 127 133 <h6>~Default: 5</h6> … … 138 144 </select> 139 145 <label for="news_cat"> 140 <?php _e('Category' ); ?>146 <?php _e('Category', 'kush-mn-plugin'); ?> 141 147 </label> 142 <h6>~Default: " default"</h6>148 <h6>~Default: "Default"</h6> 143 149 </div> 144 150 <?php endif;?> … … 146 152 <input type="checkbox" id="<?php echo $this->get_field_id('news_header'); ?>" name="<?php echo $this->get_field_name('news_header');?>" <?php echo ($instance['news_header'] == 'true')? 'checked':''; ?> /> 147 153 <label for="news_header"> 148 <?php _e('Header' ); ?>154 <?php _e('Header', 'kush-mn-plugin'); ?> 149 155 </label> 150 156 </div> … … 217 223 add_option('kush_mn_editor_access','false'); 218 224 add_option('kush_mn_read_story_text','Read Full story »'); 225 add_option('kush_mn_load_newtab','true'); 219 226 } 220 227 kush_mn_install(); -
kush-micro-news/trunk/readme.txt
r1334630 r1403333 4 4 Tags: post,news,micro,short,share,link,kush,refer,concise,fast 5 5 Requires at least: 3.0.1 6 Tested up to: 4. 4.17 Stable tag: 1.6. 46 Tested up to: 4.5 7 Stable tag: 1.6.5 8 8 License: GPLv2 or later 9 9 License URI: http://www.gnu.org/licenses/gpl-2.0.html … … 90 90 == Changelog == 91 91 92 = 1.6.5 = 93 * Plugin Internationalized. 94 * Added option: Open link in new/self tab. 95 92 96 = 1.6.4 = 93 97 * Bug fix: css opacity in header. -
kush-micro-news/trunk/uninstall.php
r1334630 r1403333 23 23 delete_option('kush_mn_read_story_text'); 24 24 delete_option('kush_mn_editor_access'); 25 delete_option('kush_mn_load_newtab'); 26 25 27 26 28 global $wpdb;
Note: See TracChangeset
for help on using the changeset viewer.