Changeset 2092738
- Timestamp:
- 05/22/2019 03:06:05 AM (7 years ago)
- Location:
- podamibe-simple-footer-widget-area
- Files:
-
- 22 added
- 3 edited
-
tags/2.0.8 (added)
-
tags/2.0.8/assets (added)
-
tags/2.0.8/assets/css (added)
-
tags/2.0.8/assets/css/sfwa-admin.css (added)
-
tags/2.0.8/assets/css/sfwa.css (added)
-
tags/2.0.8/assets/img (added)
-
tags/2.0.8/assets/js (added)
-
tags/2.0.8/assets/js/custom-script.js (added)
-
tags/2.0.8/assets/js/media-uploader.js (added)
-
tags/2.0.8/languages (added)
-
tags/2.0.8/languages/pn-sfwarea.pot (added)
-
tags/2.0.8/readme.txt (added)
-
tags/2.0.8/settings.php (added)
-
tags/2.0.8/simple-footer-widget-area.php (added)
-
tags/2.0.8/widgets (added)
-
tags/2.0.8/widgets/sfwa-ads.php (added)
-
tags/2.0.8/widgets/sfwa-button-widget.php (added)
-
tags/2.0.8/widgets/sfwa-contact.php (added)
-
tags/2.0.8/widgets/sfwa-credential.php (added)
-
tags/2.0.8/widgets/sfwa-footer-widget.php (added)
-
tags/2.0.8/widgets/sfwa-google-map-widget.php (added)
-
tags/2.0.8/widgets/sfwa-social-widget.php (added)
-
trunk/readme.txt (modified) (2 diffs)
-
trunk/settings.php (modified) (2 diffs)
-
trunk/simple-footer-widget-area.php (modified) (4 diffs)
Legend:
- Unmodified
- Added
- Removed
-
podamibe-simple-footer-widget-area/trunk/readme.txt
r2008834 r2092738 3 3 Tags: Footer Widget, Simple Footer Widgets, Footer Widget Area, Footer Creator, Footer Generator, Footer Sidebar Creator, Footer sidebar, Footer Design, Podamibe Nepal, Podamibe, Nepal 4 4 Requires at least: 4.0 5 Tested up to: 5.0 6 Stable tag: 2.0.7 5 Stable tag: 2.0.8 7 6 License: GPLv2 or later 8 7 License URI: http://www.gnu.org/licenses/gpl-2.0.html … … 57 56 58 57 == Changelog == 58 = 2.0.8 = 59 * add the support section 59 60 60 61 = 2.0.7 = -
podamibe-simple-footer-widget-area/trunk/settings.php
r1583248 r2092738 158 158 <div class="inside"> 159 159 <div class="inside_width"> 160 <p class="elementor-message-actions"> 161 <a href="<?php echo esc_url( 'http://shop.podamibenepal.com/downloads/podamibe-simple-footer-widget-area/' ); ?>" class="button button-primary"><?php esc_html_e('Documentation', SFWA_TEXT_DOMAIN);?></a> 162 <a href="<?php echo esc_url( 'http://shop.podamibenepal.com/downloads/podamibe-simple-footer-widget-area/' ); ?>" class="button button-primary"><?php esc_html_e('Details', SFWA_TEXT_DOMAIN);?></a> 163 <a href="<?php echo esc_url( 'http://shop.podamibenepal.com/forums/forum/support/' ); ?>" class="button button-primary"><?php esc_html_e('Live Support', SFWA_TEXT_DOMAIN);?></a> 164 </p><br /><br /> 160 165 <p> 161 166 <?php esc_html_e('Simple Footer Widget Area is a free plugin which allows you to create footer areas from 1 - 7 depending upon the requirement of your theme. This is a widget dependent plugin, needs wordpress widgets for footer content, using which you are able to create footer section in your website.', SFWA_TEXT_DOMAIN);?> … … 173 178 <li><?php esc_html_e('Easy plugin for theme developer.', SFWA_TEXT_DOMAIN);?></li> 174 179 </ol> 180 181 182 175 183 </div> 176 184 </div> -
podamibe-simple-footer-widget-area/trunk/simple-footer-widget-area.php
r2008834 r2092738 5 5 * Plugin URI: http://podamibenepal.com/wordpress-plugins/ 6 6 * Description: Add footer areas according to your requirement and design or develop your own footer for your website, for theme developement or for an existing theme. It helps you create footer that includes website informations or organisation information along with copyright information. 7 * Version: 2.0. 77 * Version: 2.0.8 8 8 * Author: Podamibe Nepal 9 9 * Author URI: http://podamibenepal.com/ … … 21 21 define('SFWA_URL', plugins_url('', __FILE__)); 22 22 define('SFWA_DIR', plugin_dir_path(__FILE__)); 23 define('SFWA_VERSION','2.0. 3');23 define('SFWA_VERSION','2.0.8'); 24 24 define('SFWA_widget_DIR', SFWA_DIR . 'widgets/'); 25 25 !define('SFWA_TEXT_DOMAIN','pn-sfwarea')?define('SFWA_TEXT_DOMAIN','pn-sfwarea'):NULL; … … 48 48 add_filter( 'plugin_action_links_' . plugin_basename(__FILE__), array($this, 'action_links') ); 49 49 add_action('wp_head',array($this, 'sfwarea_hook_css'), 20); 50 51 add_filter("plugin_row_meta", array($this, 'get_extra_meta_links'), 10, 4); 50 52 } 51 53 … … 432 434 return $links; 433 435 } 436 437 438 /** 439 * Adds extra links to the plugin activation page 440 */ 441 public function get_extra_meta_links($meta, $file, $data, $status) { 442 443 if (plugin_basename(__FILE__) == $file) { 444 $meta[] = "<a href='http://shop.podamibenepal.com/forums/forum/support/' target='_blank'>" . __('Support', 'pn-sfwarea') . "</a>"; 445 $meta[] = "<a href='http://shop.podamibenepal.com/downloads/podamibe-simple-footer-widget-area/' target='_blank'>" . __('Documentation ', 'pn-sfwarea') . "</a>"; 446 $meta[] = "<a href='https://wordpress.org/support/plugin/podamibe-simple-footer-widget-area/reviews#new-post' target='_blank' title='" . __('Leave a review', 'pn-sfwarea') . "'><i class='ml-stars'><svg xmlns='http://www.w3.org/2000/svg' width='15' height='15' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' class='feather feather-star'><polygon points='12 2 15.09 8.26 22 9.27 17 14.14 18.18 21.02 12 17.77 5.82 21.02 7 14.14 2 9.27 8.91 8.26 12 2'/></svg><svg xmlns='http://www.w3.org/2000/svg' width='15' height='15' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' class='feather feather-star'><polygon points='12 2 15.09 8.26 22 9.27 17 14.14 18.18 21.02 12 17.77 5.82 21.02 7 14.14 2 9.27 8.91 8.26 12 2'/></svg><svg xmlns='http://www.w3.org/2000/svg' width='15' height='15' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' class='feather feather-star'><polygon points='12 2 15.09 8.26 22 9.27 17 14.14 18.18 21.02 12 17.77 5.82 21.02 7 14.14 2 9.27 8.91 8.26 12 2'/></svg><svg xmlns='http://www.w3.org/2000/svg' width='15' height='15' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' class='feather feather-star'><polygon points='12 2 15.09 8.26 22 9.27 17 14.14 18.18 21.02 12 17.77 5.82 21.02 7 14.14 2 9.27 8.91 8.26 12 2'/></svg><svg xmlns='http://www.w3.org/2000/svg' width='15' height='15' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' class='feather feather-star'><polygon points='12 2 15.09 8.26 22 9.27 17 14.14 18.18 21.02 12 17.77 5.82 21.02 7 14.14 2 9.27 8.91 8.26 12 2'/></svg></i></a>"; 447 } 448 return $meta; 449 } 450 451 452 434 453 } 435 454
Note: See TracChangeset
for help on using the changeset viewer.