Changeset 2566651
- Timestamp:
- 07/18/2021 01:24:53 PM (5 years ago)
- Location:
- wp-post-rating
- Files:
-
- 24 added
- 8 deleted
- 22 edited
- 1 copied
-
tags/1.2.0 (copied) (copied from wp-post-rating/trunk)
-
tags/1.2.0/.editorconfig (added)
-
tags/1.2.0/assets/css (deleted)
-
tags/1.2.0/assets/index.html (added)
-
tags/1.2.0/assets/js/admin.js (added)
-
tags/1.2.0/assets/js/main.js (added)
-
tags/1.2.0/assets/js/min (deleted)
-
tags/1.2.0/config/php-scoper/symfony_config.inc.php (modified) (3 diffs)
-
tags/1.2.0/dist (added)
-
tags/1.2.0/dist/admin.bundle.js (added)
-
tags/1.2.0/dist/admin.css (added)
-
tags/1.2.0/dist/main.bundle.js (added)
-
tags/1.2.0/dist/main.css (added)
-
tags/1.2.0/readme.txt (modified) (1 diff)
-
tags/1.2.0/src/Entity/SettingEntity.php (modified) (3 diffs)
-
tags/1.2.0/src/Service/ConfigService.php (modified) (2 diffs)
-
tags/1.2.0/src/Service/ScriptsService.php (modified) (6 diffs)
-
tags/1.2.0/src/Service/SettingFormService.php (modified) (2 diffs)
-
tags/1.2.0/src/Views/RatingView.php (modified) (4 diffs)
-
tags/1.2.0/src/Wordpress/WPR_Widget.php (modified) (1 diff)
-
tags/1.2.0/vendor (deleted)
-
tags/1.2.0/vendor_prefixed (deleted)
-
tags/1.2.0/views/admin/settings.twig (modified) (2 diffs)
-
tags/1.2.0/views/star-rating.twig (modified) (1 diff)
-
tags/1.2.0/webpack.config.demo.js (added)
-
tags/1.2.0/webpack.config.js (added)
-
tags/1.2.0/wp-post-rating.php (modified) (1 diff)
-
tags/1.2.0/yarn.lock (added)
-
trunk/.editorconfig (added)
-
trunk/assets/css (deleted)
-
trunk/assets/index.html (added)
-
trunk/assets/js/admin.js (added)
-
trunk/assets/js/main.js (added)
-
trunk/assets/js/min (deleted)
-
trunk/config/php-scoper/symfony_config.inc.php (modified) (3 diffs)
-
trunk/dist (added)
-
trunk/dist/admin.bundle.js (added)
-
trunk/dist/admin.css (added)
-
trunk/dist/main.bundle.js (added)
-
trunk/dist/main.css (added)
-
trunk/readme.txt (modified) (1 diff)
-
trunk/src/Entity/SettingEntity.php (modified) (3 diffs)
-
trunk/src/Service/ConfigService.php (modified) (2 diffs)
-
trunk/src/Service/ScriptsService.php (modified) (6 diffs)
-
trunk/src/Service/SettingFormService.php (modified) (2 diffs)
-
trunk/src/Views/RatingView.php (modified) (4 diffs)
-
trunk/src/Wordpress/WPR_Widget.php (modified) (1 diff)
-
trunk/vendor (deleted)
-
trunk/vendor_prefixed (deleted)
-
trunk/views/admin/settings.twig (modified) (2 diffs)
-
trunk/views/star-rating.twig (modified) (1 diff)
-
trunk/webpack.config.demo.js (added)
-
trunk/webpack.config.js (added)
-
trunk/wp-post-rating.php (modified) (1 diff)
-
trunk/yarn.lock (added)
Legend:
- Unmodified
- Added
- Removed
-
wp-post-rating/tags/1.2.0/config/php-scoper/symfony_config.inc.php
r2427790 r2566651 1 1 <?php 2 2 3 declare(strict_types =1);3 declare(strict_types=1); 4 4 5 5 use Isolated\Symfony\Component\Finder\Finder; … … 14 14 * For more see: https://github.com/humbug/php-scoper#finders-and-paths 15 15 */ 16 'finders' => array(17 Finder::create()->files()->in( 'vendor/symfony/config'),16 'finders' => array( 17 Finder::create()->files()->in('vendor/symfony/config'), 18 18 ), 19 19 … … 26 26 * For more see: https://github.com/humbug/php-scoper#patchers 27 27 */ 28 'patchers' => array(),28 'patchers' => array(), 29 29 ); -
wp-post-rating/tags/1.2.0/readme.txt
r2427790 r2566651 44 44 45 45 == Changelog == 46 = 1.2.0 = 47 * Stars rating library moved to @romua1d/star-rating-js library 46 48 = 1.1.1.0 = 47 49 * Global refactoring. Moved to Symfony DI -
wp-post-rating/tags/1.2.0/src/Entity/SettingEntity.php
r2427790 r2566651 9 9 public $position = 'shortcode'; 10 10 public $starsMainColor = '#fdd835'; 11 public $starsSecondColor = '#fbc02d';12 11 public $starsTextColor = '#000'; 13 12 public $starsTextBackgroundColor = '#fff'; … … 18 17 $this->setPosition($data['position']); 19 18 $this->setStarsMainColor($data['starsMainColor']); 20 $this->setStarsSecondColor($data['starsSecondColor']);21 19 $this->setStarsTextColor($data['starsTextColor']); 22 20 $this->setStarsTextBackgroundColor($data['starsTextBackgroundColor']); … … 54 52 { 55 53 $this->starsMainColor = $starsMainColor; 56 }57 58 /**59 * @return mixed60 */61 public function getStarsSecondColor()62 {63 return $this->starsSecondColor;64 }65 66 /**67 * @param mixed $starsSecondColor68 */69 public function setStarsSecondColor($starsSecondColor): void70 {71 $this->starsSecondColor = $starsSecondColor;72 54 } 73 55 -
wp-post-rating/tags/1.2.0/src/Service/ConfigService.php
r2427790 r2566651 99 99 public function getPluginCssPath() 100 100 { 101 return $this->getPluginUrl().' assets/css/';101 return $this->getPluginUrl().'dist/'; 102 102 } 103 103 … … 107 107 public function getPluginJSPath() 108 108 { 109 return $this->getPluginUrl().' assets/js/min/';109 return $this->getPluginUrl().'dist/'; 110 110 } 111 111 } -
wp-post-rating/tags/1.2.0/src/Service/ScriptsService.php
r2427790 r2566651 44 44 wp_enqueue_style( 45 45 self::SCRIPT_NAME, 46 $this->configService->getPluginCssPath() .'wp-post-rating.min.css',46 $this->configService->getPluginCssPath() . 'main.css', 47 47 [], 48 48 $this->params->get('wpr.version'), … … 52 52 wp_enqueue_script( 53 53 self::SCRIPT_NAME, 54 $this->configService->getPluginJSPath() .'wp-post-rating.min.js',54 $this->configService->getPluginJSPath() . 'main.bundle.js', 55 55 ['jquery'], 56 56 $this->params->get('wpr.version'), … … 66 66 public function initAdminScripts($hook) 67 67 { 68 if ($hook === 'settings_page_' .ConfigService::OPTIONS_KEY) {68 if ($hook === 'settings_page_' . ConfigService::OPTIONS_KEY) { 69 69 /* 70 70 * COLOR PICKER … … 75 75 wp_register_script( 76 76 'admin-settings-page', 77 $this->configService->getPluginJSPath() .'admin-settings-page.min.js',77 $this->configService->getPluginJSPath() . 'admin.bundle.js', 78 78 ['jquery', 'wp-color-picker'] 79 79 ); … … 82 82 } 83 83 84 if ($hook === 'settings_page_' .ConfigService::OPTIONS_KEY or $hook === 'plugins.php') {84 if ($hook === 'settings_page_' . ConfigService::OPTIONS_KEY or $hook === 'plugins.php') { 85 85 wp_register_style( 86 86 'admin-settings-page', 87 $this->configService->getPluginCssPath() .'admin-settings-page.min.css'87 $this->configService->getPluginCssPath() . 'admin.css' 88 88 ); 89 89 wp_enqueue_style('admin-settings-page'); … … 98 98 :root { 99 99 --wpr-main-color: %s; 100 --wpr-second-color: %s;101 100 --wpr-text-color: %s; 102 101 --wpr-text-background-color: %s; 103 102 }', 104 103 $settingsDto->getStarsMainColor(), 105 $settingsDto->getStarsSecondColor(),106 104 $settingsDto->getStarsTextColor(), 107 105 $settingsDto->getStarsTextBackgroundColor() -
wp-post-rating/tags/1.2.0/src/Service/SettingFormService.php
r2427790 r2566651 30 30 $settingEntity = $this->settingService->getSetting(); 31 31 $settingEntity->setStarsMainColor(htmlspecialchars($_POST['main_color'])); 32 $settingEntity->setStarsSecondColor(htmlspecialchars($_POST['second_color']));33 32 $settingEntity->setStarsTextColor(htmlspecialchars($_POST['text_color'])); 34 33 $settingEntity->setStarsTextBackgroundColor(htmlspecialchars($_POST['text_background_color'])); … … 58 57 { 59 58 $this->validateColorHEX($settingEntity->getStarsMainColor()); 60 $this->validateColorHEX($settingEntity->getStarsSecondColor());61 59 $this->validateColorHEX($settingEntity->getStarsTextColor()); 62 60 $this->validateColorHEX($settingEntity->getStarsTextBackgroundColor()); -
wp-post-rating/tags/1.2.0/src/Views/RatingView.php
r2427790 r2566651 8 8 use WPR\Service\TwigEnvironmentService; 9 9 use WPR\Service\WordpressFunctionsService; 10 use WPR\Service\SettingService; 10 11 11 12 class RatingView … … 31 32 private $twigService; 32 33 34 /** 35 * @var SettingService 36 */ 37 private $settingService; 38 33 39 public function __construct( 34 40 WordpressFunctionsService $wordpressService, 35 41 RatingService $ratingService, 36 42 SchemaOrgView $schemaView, 37 TwigEnvironmentService $twigService 43 TwigEnvironmentService $twigService, 44 SettingService $settingService 38 45 ) { 39 46 $this->wordpressService = $wordpressService; … … 41 48 $this->schemaView = $schemaView; 42 49 $this->twigService = $twigService; 50 $this->settingService = $settingService; 43 51 } 44 52 … … 53 61 'total' => $this->ratingService->getTotalVotesByPostId($id), 54 62 'jsonMarkup' => $this->schemaView->getJSONLD(), 63 'starsColor' => $this->settingService->getSetting()->getStarsMainColor(), 64 'textColor' => $this->settingService->getSetting()->getStarsTextColor(), 65 'backgroundColor' => $this->settingService->getSetting()->getStarsTextBackgroundColor(), 55 66 ]); 56 67 } -
wp-post-rating/tags/1.2.0/src/Wordpress/WPR_Widget.php
r2363367 r2566651 181 181 $date = date_i18n($date_format, strtotime($post['created_at'])); 182 182 $stars = 183 '<small class="wpr_rating_list" >'183 '<small class="wpr_rating_list" style="color: var(--wpr-main-color);">' 184 184 .str_repeat('<span class="icon-star"></span>', (int) $post['vote']) 185 185 .'</small>'; -
wp-post-rating/tags/1.2.0/views/admin/settings.twig
r2363367 r2566651 48 48 <td> 49 49 <fieldset> 50 <div class="wpr-wrapp wpr-wrapp-admin"> 51 <div class="wpr-rating"> 52 <span class="icon-star checked" data-value="5" title="{{ __('Vote', PLUGIN_NAME) }} 5"></span> 53 <span class="icon-star" data-value="4" 54 title="{{ __('Vote', PLUGIN_NAME) }} 4"></span> 55 <span class="icon-star" data-value="3" 56 title="{{ __('Vote', PLUGIN_NAME) }} 3"></span> 57 <span class="icon-star" data-value="2" 58 title="{{ __('Vote', PLUGIN_NAME) }} 2"></span> 59 <span class="icon-star" data-value="1" 60 title="{{ __('Vote', PLUGIN_NAME) }} 1"></span> 61 </div> 62 <div class="wpr-info-container"> 63 <span>{{ __('Votes', PLUGIN_NAME) }} </span> 64 <span class="wpr-total">(1)</span> 65 </div> 66 </div> 50 <div class="wpr-wrapp wpr-wrapp-admin"><span></span></div> 67 51 </fieldset> 68 52 </td> … … 82 66 {{ __('Second (darker) color choose automatically', PLUGIN_NAME) }} 83 67 </p> 84 <input class="second_color_chooser_js" name="second_color" type="hidden"85 value="{{ options.getStarsSecondColor }}"/>86 68 </fieldset> 87 69 </td> -
wp-post-rating/tags/1.2.0/views/star-rating.twig
r2363367 r2566651 1 <div class="wpr-wrapp" id="wpr-widget-{{ postId }}"> 2 <div class="wpr-rating" data-id="{{ postId }}"> 3 {% for i in 5..1 %} 4 <span class="icon-star {% if i == avgRating %}checked{% endif %}" data-value="{{ i }}"></span> 5 {% endfor %} 6 </div> 7 <div class="wpr-rating-loader wpr-hide"> 8 <i class="icon-spin4 animate-spin"></i> 9 </div> 10 <div class="wpr-info-container"> 11 {% if total %} 12 <span>{{ __('Votes', PLUGIN_NAME) }} </span> 13 <span class="wpr-total">({{ total }})</span> 14 {% else %} 15 <span>{{ __('Vote', PLUGIN_NAME) }}</span> 16 <span class="wpr-total"></span> 17 {% endif %} 18 </div> 19 </div> 1 <div 2 class="wpr-wrapp" 3 id="wpr-widget-{{ postId }}" 4 data-id="{{ postId }}" 5 data-value="{{ avgRating }}" 6 data-votestitle="{{ __('Votes', PLUGIN_NAME) }}" 7 data-total="{{ total }}" 8 data-fontsize="30px" 9 data-starscolor="{{ starsColor }}" 10 data-textcolor="{{ textColor }}" 11 data-backgroundcolor="{{ backgroundColor }}" 12 13 ></div> 20 14 {{ jsonMarkup|raw }} -
wp-post-rating/tags/1.2.0/wp-post-rating.php
r2427790 r2566651 4 4 Plugin URI: https://github.com/shmidtelson/wp-post-rating 5 5 Description: Powerful post rating wordpress plugin 6 Version: 1. 1.1.06 Version: 1.2.0 7 7 Author: Romua1d 8 8 Author URI: https://romua1d.ru -
wp-post-rating/trunk/config/php-scoper/symfony_config.inc.php
r2427790 r2566651 1 1 <?php 2 2 3 declare(strict_types =1);3 declare(strict_types=1); 4 4 5 5 use Isolated\Symfony\Component\Finder\Finder; … … 14 14 * For more see: https://github.com/humbug/php-scoper#finders-and-paths 15 15 */ 16 'finders' => array(17 Finder::create()->files()->in( 'vendor/symfony/config'),16 'finders' => array( 17 Finder::create()->files()->in('vendor/symfony/config'), 18 18 ), 19 19 … … 26 26 * For more see: https://github.com/humbug/php-scoper#patchers 27 27 */ 28 'patchers' => array(),28 'patchers' => array(), 29 29 ); -
wp-post-rating/trunk/readme.txt
r2427790 r2566651 44 44 45 45 == Changelog == 46 = 1.2.0 = 47 * Stars rating library moved to @romua1d/star-rating-js library 46 48 = 1.1.1.0 = 47 49 * Global refactoring. Moved to Symfony DI -
wp-post-rating/trunk/src/Entity/SettingEntity.php
r2427790 r2566651 9 9 public $position = 'shortcode'; 10 10 public $starsMainColor = '#fdd835'; 11 public $starsSecondColor = '#fbc02d';12 11 public $starsTextColor = '#000'; 13 12 public $starsTextBackgroundColor = '#fff'; … … 18 17 $this->setPosition($data['position']); 19 18 $this->setStarsMainColor($data['starsMainColor']); 20 $this->setStarsSecondColor($data['starsSecondColor']);21 19 $this->setStarsTextColor($data['starsTextColor']); 22 20 $this->setStarsTextBackgroundColor($data['starsTextBackgroundColor']); … … 54 52 { 55 53 $this->starsMainColor = $starsMainColor; 56 }57 58 /**59 * @return mixed60 */61 public function getStarsSecondColor()62 {63 return $this->starsSecondColor;64 }65 66 /**67 * @param mixed $starsSecondColor68 */69 public function setStarsSecondColor($starsSecondColor): void70 {71 $this->starsSecondColor = $starsSecondColor;72 54 } 73 55 -
wp-post-rating/trunk/src/Service/ConfigService.php
r2427790 r2566651 99 99 public function getPluginCssPath() 100 100 { 101 return $this->getPluginUrl().' assets/css/';101 return $this->getPluginUrl().'dist/'; 102 102 } 103 103 … … 107 107 public function getPluginJSPath() 108 108 { 109 return $this->getPluginUrl().' assets/js/min/';109 return $this->getPluginUrl().'dist/'; 110 110 } 111 111 } -
wp-post-rating/trunk/src/Service/ScriptsService.php
r2427790 r2566651 44 44 wp_enqueue_style( 45 45 self::SCRIPT_NAME, 46 $this->configService->getPluginCssPath() .'wp-post-rating.min.css',46 $this->configService->getPluginCssPath() . 'main.css', 47 47 [], 48 48 $this->params->get('wpr.version'), … … 52 52 wp_enqueue_script( 53 53 self::SCRIPT_NAME, 54 $this->configService->getPluginJSPath() .'wp-post-rating.min.js',54 $this->configService->getPluginJSPath() . 'main.bundle.js', 55 55 ['jquery'], 56 56 $this->params->get('wpr.version'), … … 66 66 public function initAdminScripts($hook) 67 67 { 68 if ($hook === 'settings_page_' .ConfigService::OPTIONS_KEY) {68 if ($hook === 'settings_page_' . ConfigService::OPTIONS_KEY) { 69 69 /* 70 70 * COLOR PICKER … … 75 75 wp_register_script( 76 76 'admin-settings-page', 77 $this->configService->getPluginJSPath() .'admin-settings-page.min.js',77 $this->configService->getPluginJSPath() . 'admin.bundle.js', 78 78 ['jquery', 'wp-color-picker'] 79 79 ); … … 82 82 } 83 83 84 if ($hook === 'settings_page_' .ConfigService::OPTIONS_KEY or $hook === 'plugins.php') {84 if ($hook === 'settings_page_' . ConfigService::OPTIONS_KEY or $hook === 'plugins.php') { 85 85 wp_register_style( 86 86 'admin-settings-page', 87 $this->configService->getPluginCssPath() .'admin-settings-page.min.css'87 $this->configService->getPluginCssPath() . 'admin.css' 88 88 ); 89 89 wp_enqueue_style('admin-settings-page'); … … 98 98 :root { 99 99 --wpr-main-color: %s; 100 --wpr-second-color: %s;101 100 --wpr-text-color: %s; 102 101 --wpr-text-background-color: %s; 103 102 }', 104 103 $settingsDto->getStarsMainColor(), 105 $settingsDto->getStarsSecondColor(),106 104 $settingsDto->getStarsTextColor(), 107 105 $settingsDto->getStarsTextBackgroundColor() -
wp-post-rating/trunk/src/Service/SettingFormService.php
r2427790 r2566651 30 30 $settingEntity = $this->settingService->getSetting(); 31 31 $settingEntity->setStarsMainColor(htmlspecialchars($_POST['main_color'])); 32 $settingEntity->setStarsSecondColor(htmlspecialchars($_POST['second_color']));33 32 $settingEntity->setStarsTextColor(htmlspecialchars($_POST['text_color'])); 34 33 $settingEntity->setStarsTextBackgroundColor(htmlspecialchars($_POST['text_background_color'])); … … 58 57 { 59 58 $this->validateColorHEX($settingEntity->getStarsMainColor()); 60 $this->validateColorHEX($settingEntity->getStarsSecondColor());61 59 $this->validateColorHEX($settingEntity->getStarsTextColor()); 62 60 $this->validateColorHEX($settingEntity->getStarsTextBackgroundColor()); -
wp-post-rating/trunk/src/Views/RatingView.php
r2427790 r2566651 8 8 use WPR\Service\TwigEnvironmentService; 9 9 use WPR\Service\WordpressFunctionsService; 10 use WPR\Service\SettingService; 10 11 11 12 class RatingView … … 31 32 private $twigService; 32 33 34 /** 35 * @var SettingService 36 */ 37 private $settingService; 38 33 39 public function __construct( 34 40 WordpressFunctionsService $wordpressService, 35 41 RatingService $ratingService, 36 42 SchemaOrgView $schemaView, 37 TwigEnvironmentService $twigService 43 TwigEnvironmentService $twigService, 44 SettingService $settingService 38 45 ) { 39 46 $this->wordpressService = $wordpressService; … … 41 48 $this->schemaView = $schemaView; 42 49 $this->twigService = $twigService; 50 $this->settingService = $settingService; 43 51 } 44 52 … … 53 61 'total' => $this->ratingService->getTotalVotesByPostId($id), 54 62 'jsonMarkup' => $this->schemaView->getJSONLD(), 63 'starsColor' => $this->settingService->getSetting()->getStarsMainColor(), 64 'textColor' => $this->settingService->getSetting()->getStarsTextColor(), 65 'backgroundColor' => $this->settingService->getSetting()->getStarsTextBackgroundColor(), 55 66 ]); 56 67 } -
wp-post-rating/trunk/src/Wordpress/WPR_Widget.php
r2363367 r2566651 181 181 $date = date_i18n($date_format, strtotime($post['created_at'])); 182 182 $stars = 183 '<small class="wpr_rating_list" >'183 '<small class="wpr_rating_list" style="color: var(--wpr-main-color);">' 184 184 .str_repeat('<span class="icon-star"></span>', (int) $post['vote']) 185 185 .'</small>'; -
wp-post-rating/trunk/views/admin/settings.twig
r2363367 r2566651 48 48 <td> 49 49 <fieldset> 50 <div class="wpr-wrapp wpr-wrapp-admin"> 51 <div class="wpr-rating"> 52 <span class="icon-star checked" data-value="5" title="{{ __('Vote', PLUGIN_NAME) }} 5"></span> 53 <span class="icon-star" data-value="4" 54 title="{{ __('Vote', PLUGIN_NAME) }} 4"></span> 55 <span class="icon-star" data-value="3" 56 title="{{ __('Vote', PLUGIN_NAME) }} 3"></span> 57 <span class="icon-star" data-value="2" 58 title="{{ __('Vote', PLUGIN_NAME) }} 2"></span> 59 <span class="icon-star" data-value="1" 60 title="{{ __('Vote', PLUGIN_NAME) }} 1"></span> 61 </div> 62 <div class="wpr-info-container"> 63 <span>{{ __('Votes', PLUGIN_NAME) }} </span> 64 <span class="wpr-total">(1)</span> 65 </div> 66 </div> 50 <div class="wpr-wrapp wpr-wrapp-admin"><span></span></div> 67 51 </fieldset> 68 52 </td> … … 82 66 {{ __('Second (darker) color choose automatically', PLUGIN_NAME) }} 83 67 </p> 84 <input class="second_color_chooser_js" name="second_color" type="hidden"85 value="{{ options.getStarsSecondColor }}"/>86 68 </fieldset> 87 69 </td> -
wp-post-rating/trunk/views/star-rating.twig
r2363367 r2566651 1 <div class="wpr-wrapp" id="wpr-widget-{{ postId }}"> 2 <div class="wpr-rating" data-id="{{ postId }}"> 3 {% for i in 5..1 %} 4 <span class="icon-star {% if i == avgRating %}checked{% endif %}" data-value="{{ i }}"></span> 5 {% endfor %} 6 </div> 7 <div class="wpr-rating-loader wpr-hide"> 8 <i class="icon-spin4 animate-spin"></i> 9 </div> 10 <div class="wpr-info-container"> 11 {% if total %} 12 <span>{{ __('Votes', PLUGIN_NAME) }} </span> 13 <span class="wpr-total">({{ total }})</span> 14 {% else %} 15 <span>{{ __('Vote', PLUGIN_NAME) }}</span> 16 <span class="wpr-total"></span> 17 {% endif %} 18 </div> 19 </div> 1 <div 2 class="wpr-wrapp" 3 id="wpr-widget-{{ postId }}" 4 data-id="{{ postId }}" 5 data-value="{{ avgRating }}" 6 data-votestitle="{{ __('Votes', PLUGIN_NAME) }}" 7 data-total="{{ total }}" 8 data-fontsize="30px" 9 data-starscolor="{{ starsColor }}" 10 data-textcolor="{{ textColor }}" 11 data-backgroundcolor="{{ backgroundColor }}" 12 13 ></div> 20 14 {{ jsonMarkup|raw }} -
wp-post-rating/trunk/wp-post-rating.php
r2427790 r2566651 4 4 Plugin URI: https://github.com/shmidtelson/wp-post-rating 5 5 Description: Powerful post rating wordpress plugin 6 Version: 1. 1.1.06 Version: 1.2.0 7 7 Author: Romua1d 8 8 Author URI: https://romua1d.ru
Note: See TracChangeset
for help on using the changeset viewer.