Version Description
- 2019-02-13
Download this release
Release Info
Developer | codeinwp |
Plugin | WP Product Review Lite |
Version | 3.5.1 |
Comparing to | |
See all releases |
Code changes from version 3.5.0 to 3.5.1
- CHANGELOG.md +4 -0
- includes/admin/class-wppr-editor.php +10 -1
- includes/class-wppr.php +1 -1
- includes/gutenberg/dist/block.css +0 -2
- includes/gutenberg/dist/sidebar.js +2 -2
- includes/gutenberg/src/style.scss +28 -25
- includes/gutenberg/webpack.config.js +1 -1
- package-lock.json +7 -7
- readme.md +12 -0
- readme.txt +5 -0
- themeisle-hash.json +1 -1
- vendor/autoload.php +1 -1
- vendor/autoload_52.php +1 -1
- vendor/composer/autoload_real.php +5 -5
- vendor/composer/autoload_real_52.php +3 -3
- wp-product-review.php +2 -2
CHANGELOG.md
CHANGED
@@ -1,4 +1,8 @@
|
|
1 |
|
|
|
|
|
|
|
|
|
2 |
### v3.5.0 - 2019-02-11
|
3 |
**Changes:**
|
4 |
* Fix issue with Gutenberg
|
1 |
|
2 |
+
### v3.5.1 - 2019-02-13
|
3 |
+
**Changes:**
|
4 |
+
* Fix issue with option not showing to add a review in the post editor screen
|
5 |
+
|
6 |
### v3.5.0 - 2019-02-11
|
7 |
**Changes:**
|
8 |
* Fix issue with Gutenberg
|
includes/admin/class-wppr-editor.php
CHANGED
@@ -56,10 +56,19 @@ class WPPR_Editor {
|
|
56 |
public function set_editor() {
|
57 |
$back_compat_meta_box = '';
|
58 |
if ( function_exists( 'register_block_type' ) ) {
|
|
|
|
|
59 |
$back_compat_meta_box = array(
|
60 |
-
'__back_compat_meta_box' =>
|
61 |
);
|
|
|
|
|
|
|
|
|
|
|
|
|
62 |
}
|
|
|
63 |
add_meta_box(
|
64 |
'wppr_editor_metabox',
|
65 |
__( 'Product Review Extra Settings', 'wp-product-review' ),
|
56 |
public function set_editor() {
|
57 |
$back_compat_meta_box = '';
|
58 |
if ( function_exists( 'register_block_type' ) ) {
|
59 |
+
$current_screen = get_current_screen();
|
60 |
+
|
61 |
$back_compat_meta_box = array(
|
62 |
+
'__back_compat_meta_box' => false,
|
63 |
);
|
64 |
+
|
65 |
+
if ( ! class_exists( 'Classic_Editor' ) || $current_screen->is_block_editor() ) {
|
66 |
+
$back_compat_meta_box = array(
|
67 |
+
'__back_compat_meta_box' => true,
|
68 |
+
);
|
69 |
+
}
|
70 |
}
|
71 |
+
|
72 |
add_meta_box(
|
73 |
'wppr_editor_metabox',
|
74 |
__( 'Product Review Extra Settings', 'wp-product-review' ),
|
includes/class-wppr.php
CHANGED
@@ -67,7 +67,7 @@ class WPPR {
|
|
67 |
*/
|
68 |
public function __construct() {
|
69 |
$this->plugin_name = 'wppr';
|
70 |
-
$this->version = '3.5.
|
71 |
|
72 |
$this->load_dependencies();
|
73 |
$this->set_locale();
|
67 |
*/
|
68 |
public function __construct() {
|
69 |
$this->plugin_name = 'wppr';
|
70 |
+
$this->version = '3.5.1';
|
71 |
|
72 |
$this->load_dependencies();
|
73 |
$this->set_locale();
|
includes/gutenberg/dist/block.css
DELETED
@@ -1,2 +0,0 @@
|
|
1 |
-
.wp-product-review-product-details .wp-product-review-sidebar-base-control{padding-bottom:10px}.wp-product-review-product-details .wp-product-review-sidebar-base-control label{padding-bottom:10px}.wp-product-review-product-details .wp-product-review-sidebar-base-control .wppr_image_upload{display:block;margin-bottom:10px}.wp-product-review-product-details .wppr-review-links-list button{margin-bottom:10px}.wp-product-review-product-options .wppr-review-options-list label{width:15%;margin-right:-4px;border-radius:3px 0 0 3px;background:#ddd;line-height:30px;text-align:center;vertical-align:top;display:inline-block}.wp-product-review-product-options .wppr-review-options-list .wppr-text{width:60%;display:inline-block}.wp-product-review-product-options .wppr-review-options-list .wppr-text input{height:30px}.wp-product-review-product-options .wppr-review-options-list .wppr-option-number{width:25%;display:inline-block}.wp-product-review-product-options .wppr-review-options-list .wppr-option-number input{height:30px}.wp-product-review-product-pros .wppr-review-pro-list label{width:15%;margin-right:-4px;border-radius:3px 0 0 3px;background:#ddd;line-height:30px;text-align:center;vertical-align:top;display:inline-block}.wp-product-review-product-pros .wppr-review-pro-list .wppr-text{width:85%;display:inline-block}.wp-product-review-product-pros .wppr-review-pro-list .wppr-text input{height:30px;margin-top:0}.wp-product-review-product-cons .wppr-review-con-list label{width:15%;margin-right:-4px;border-radius:3px 0 0 3px;background:#ddd;line-height:30px;text-align:center;vertical-align:top;display:inline-block}.wp-product-review-product-cons .wppr-review-con-list .wppr-text{width:85%;display:inline-block}.wp-product-review-product-cons .wppr-review-con-list .wppr-text input{height:30px;margin-top:0}
|
2 |
-
.components-radio-image-control__container{display:block}.components-radio-image-control__option{display:inline-block;padding:5px}.components-radio-image-control label{display:inline-block;position:relative}.components-radio-image-control label img{border:1px solid transparent;max-width:250px !important}.components-radio-image-control input{display:none}.components-radio-image-control input+label .image-clickable{bottom:0;height:100%;left:0;position:absolute;right:0;top:0;width:100%}.components-radio-image-control input:checked+label img{border:1px solid #3498DB;box-shadow:0 0 5px 2px rgba(0,0,0,0.25)}.wppr-review-import-review-button{text-align:center;margin:20px 0}.wppr-review-import-modal{width:100%;height:auto}.wppr-review-import-modal .components-modal__content{max-height:100vh;overflow-y:scroll}.wppr-review-import-modal .components-modal__content .cwp_pitem_info{display:inline-block;width:100%;margin-top:5px}.wppr-review-import-modal .components-modal__content .cwp_pitem_info ul{float:left;width:30.66%;border:1px solid #f1f1f1}.wppr-review-import-modal .components-modal__content .cwp_pitem_info ul h4{margin:0;padding:3px 0;border-radius:3px 3px 0 0;background:#f1f1f1;text-align:center}.wppr-review-import-modal .components-modal__content .cwp_pitem_info ul li{padding:2px 5px;margin:0;border-top:1px solid #f1f1f1;font-size:10px;transition:all 0.2s ease-in-out}
|
|
|
|
includes/gutenberg/dist/sidebar.js
CHANGED
@@ -67,7 +67,7 @@
|
|
67 |
/* 0 */
|
68 |
/***/ (function(module, exports) {
|
69 |
|
70 |
-
eval("var core = module.exports = { version: '2.6.
|
71 |
|
72 |
/***/ }),
|
73 |
/* 1 */
|
@@ -193,7 +193,7 @@ eval("var shared = __webpack_require__(21)('keys');\nvar uid = __webpack_require
|
|
193 |
/* 21 */
|
194 |
/***/ (function(module, exports, __webpack_require__) {
|
195 |
|
196 |
-
eval("var core = __webpack_require__(0);\nvar global = __webpack_require__(1);\nvar SHARED = '__core-js_shared__';\nvar store = global[SHARED] || (global[SHARED] = {});\n\n(module.exports = function (key, value) {\n return store[key] || (store[key] = value !== undefined ? value : {});\n})('versions', []).push({\n version: core.version,\n mode: __webpack_require__(14) ? 'pure' : 'global',\n copyright: '©
|
197 |
|
198 |
/***/ }),
|
199 |
/* 22 */
|
67 |
/* 0 */
|
68 |
/***/ (function(module, exports) {
|
69 |
|
70 |
+
eval("var core = module.exports = { version: '2.6.4' };\nif (typeof __e == 'number') __e = core; // eslint-disable-line no-undef\n//# sourceURL=[module]\n//# sourceMappingURL=data:application/json;charset=utf-8;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiMC5qcyIsInNvdXJjZXMiOlsid2VicGFjazovLy8uL25vZGVfbW9kdWxlcy9jb3JlLWpzL2xpYnJhcnkvbW9kdWxlcy9fY29yZS5qcz8xNWUwIl0sInNvdXJjZXNDb250ZW50IjpbInZhciBjb3JlID0gbW9kdWxlLmV4cG9ydHMgPSB7IHZlcnNpb246ICcyLjYuNCcgfTtcbmlmICh0eXBlb2YgX19lID09ICdudW1iZXInKSBfX2UgPSBjb3JlOyAvLyBlc2xpbnQtZGlzYWJsZS1saW5lIG5vLXVuZGVmXG5cblxuXG4vLy8vLy8vLy8vLy8vLy8vLy9cbi8vIFdFQlBBQ0sgRk9PVEVSXG4vLyAuL25vZGVfbW9kdWxlcy9jb3JlLWpzL2xpYnJhcnkvbW9kdWxlcy9fY29yZS5qc1xuLy8gbW9kdWxlIGlkID0gMFxuLy8gbW9kdWxlIGNodW5rcyA9IDAiXSwibWFwcGluZ3MiOiJBQUFBO0FBQ0E7Iiwic291cmNlUm9vdCI6IiJ9\n//# sourceURL=webpack-internal:///0\n");
|
71 |
|
72 |
/***/ }),
|
73 |
/* 1 */
|
193 |
/* 21 */
|
194 |
/***/ (function(module, exports, __webpack_require__) {
|
195 |
|
196 |
+
eval("var core = __webpack_require__(0);\nvar global = __webpack_require__(1);\nvar SHARED = '__core-js_shared__';\nvar store = global[SHARED] || (global[SHARED] = {});\n\n(module.exports = function (key, value) {\n return store[key] || (store[key] = value !== undefined ? value : {});\n})('versions', []).push({\n version: core.version,\n mode: __webpack_require__(14) ? 'pure' : 'global',\n copyright: '© 2019 Denis Pushkarev (zloirock.ru)'\n});\n//# sourceURL=[module]\n//# sourceMappingURL=data:application/json;charset=utf-8;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiMjEuanMiLCJzb3VyY2VzIjpbIndlYnBhY2s6Ly8vLi9ub2RlX21vZHVsZXMvY29yZS1qcy9saWJyYXJ5L21vZHVsZXMvX3NoYXJlZC5qcz83YmMwIl0sInNvdXJjZXNDb250ZW50IjpbInZhciBjb3JlID0gcmVxdWlyZSgnLi9fY29yZScpO1xudmFyIGdsb2JhbCA9IHJlcXVpcmUoJy4vX2dsb2JhbCcpO1xudmFyIFNIQVJFRCA9ICdfX2NvcmUtanNfc2hhcmVkX18nO1xudmFyIHN0b3JlID0gZ2xvYmFsW1NIQVJFRF0gfHwgKGdsb2JhbFtTSEFSRURdID0ge30pO1xuXG4obW9kdWxlLmV4cG9ydHMgPSBmdW5jdGlvbiAoa2V5LCB2YWx1ZSkge1xuICByZXR1cm4gc3RvcmVba2V5XSB8fCAoc3RvcmVba2V5XSA9IHZhbHVlICE9PSB1bmRlZmluZWQgPyB2YWx1ZSA6IHt9KTtcbn0pKCd2ZXJzaW9ucycsIFtdKS5wdXNoKHtcbiAgdmVyc2lvbjogY29yZS52ZXJzaW9uLFxuICBtb2RlOiByZXF1aXJlKCcuL19saWJyYXJ5JykgPyAncHVyZScgOiAnZ2xvYmFsJyxcbiAgY29weXJpZ2h0OiAnwqkgMjAxOSBEZW5pcyBQdXNoa2FyZXYgKHpsb2lyb2NrLnJ1KSdcbn0pO1xuXG5cblxuLy8vLy8vLy8vLy8vLy8vLy8vXG4vLyBXRUJQQUNLIEZPT1RFUlxuLy8gLi9ub2RlX21vZHVsZXMvY29yZS1qcy9saWJyYXJ5L21vZHVsZXMvX3NoYXJlZC5qc1xuLy8gbW9kdWxlIGlkID0gMjFcbi8vIG1vZHVsZSBjaHVua3MgPSAwIl0sIm1hcHBpbmdzIjoiQUFBQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7Iiwic291cmNlUm9vdCI6IiJ9\n//# sourceURL=webpack-internal:///21\n");
|
197 |
|
198 |
/***/ }),
|
199 |
/* 22 */
|
includes/gutenberg/src/style.scss
CHANGED
@@ -25,32 +25,35 @@
|
|
25 |
|
26 |
.wppr-review-options-list {
|
27 |
|
28 |
-
|
29 |
-
|
30 |
-
|
31 |
-
|
32 |
-
|
33 |
-
|
34 |
-
|
35 |
-
|
36 |
-
|
37 |
-
|
38 |
-
|
39 |
-
.wppr-text {
|
40 |
-
width: 60%;
|
41 |
-
display: inline-block;
|
42 |
-
|
43 |
-
input {
|
44 |
-
height: 30px;
|
45 |
}
|
46 |
-
|
47 |
-
|
48 |
-
|
49 |
-
|
50 |
-
|
51 |
-
|
52 |
-
|
53 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
54 |
}
|
55 |
}
|
56 |
|
25 |
|
26 |
.wppr-review-options-list {
|
27 |
|
28 |
+
.wppr-review-options-item {
|
29 |
+
|
30 |
+
label {
|
31 |
+
width: 15%;
|
32 |
+
margin-right: -4px;
|
33 |
+
border-radius: 3px 0 0 3px;
|
34 |
+
background: #ddd;
|
35 |
+
line-height: 30px;
|
36 |
+
text-align: center;
|
37 |
+
vertical-align: top;
|
38 |
+
display: inline-block;
|
|
|
|
|
|
|
|
|
|
|
|
|
39 |
}
|
40 |
+
|
41 |
+
.wppr-text {
|
42 |
+
width: 60%;
|
43 |
+
display: inline-block;
|
44 |
+
|
45 |
+
input {
|
46 |
+
height: 30px;
|
47 |
+
}
|
48 |
+
}
|
49 |
+
|
50 |
+
.wppr-option-number {
|
51 |
+
width: 25%;
|
52 |
+
display: inline-block;
|
53 |
+
|
54 |
+
input {
|
55 |
+
height: 30px;
|
56 |
+
}
|
57 |
}
|
58 |
}
|
59 |
|
includes/gutenberg/webpack.config.js
CHANGED
@@ -5,7 +5,7 @@ const ExtractTextPlugin = require( 'extract-text-webpack-plugin' );
|
|
5 |
|
6 |
// Set different CSS extraction for editor only and common block styles
|
7 |
const blockCSSPlugin = new ExtractTextPlugin( {
|
8 |
-
filename: './dist/
|
9 |
} );
|
10 |
|
11 |
// Configuration for the ExtractTextPlugin.
|
5 |
|
6 |
// Set different CSS extraction for editor only and common block styles
|
7 |
const blockCSSPlugin = new ExtractTextPlugin( {
|
8 |
+
filename: './dist/sidebar.css',
|
9 |
} );
|
10 |
|
11 |
// Configuration for the ExtractTextPlugin.
|
package-lock.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1 |
{
|
2 |
"name": "wp-product-review",
|
3 |
-
"version": "3.5.
|
4 |
"lockfileVersion": 1,
|
5 |
"requires": true,
|
6 |
"dependencies": {
|
@@ -673,6 +673,12 @@
|
|
673 |
"integrity": "sha1-DQcLTQQ6W+ozovGkDi7bPZpMz3c=",
|
674 |
"dev": true
|
675 |
},
|
|
|
|
|
|
|
|
|
|
|
|
|
676 |
"coffeescript": {
|
677 |
"version": "1.10.0",
|
678 |
"resolved": "https://registry.npmjs.org/coffeescript/-/coffeescript-1.10.0.tgz",
|
@@ -2652,12 +2658,6 @@
|
|
2652 |
"integrity": "sha1-D8GqoIig4+8Ovi2IMbqw3PiEUGE=",
|
2653 |
"dev": true
|
2654 |
},
|
2655 |
-
"coffee-script": {
|
2656 |
-
"version": "1.3.3",
|
2657 |
-
"resolved": "https://registry.npmjs.org/coffee-script/-/coffee-script-1.3.3.tgz",
|
2658 |
-
"integrity": "sha1-FQ1rTLUiiUNp7+1qIQHCC8f0pPQ=",
|
2659 |
-
"dev": true
|
2660 |
-
},
|
2661 |
"colors": {
|
2662 |
"version": "0.6.2",
|
2663 |
"resolved": "https://registry.npmjs.org/colors/-/colors-0.6.2.tgz",
|
1 |
{
|
2 |
"name": "wp-product-review",
|
3 |
+
"version": "3.5.1",
|
4 |
"lockfileVersion": 1,
|
5 |
"requires": true,
|
6 |
"dependencies": {
|
673 |
"integrity": "sha1-DQcLTQQ6W+ozovGkDi7bPZpMz3c=",
|
674 |
"dev": true
|
675 |
},
|
676 |
+
"coffee-script": {
|
677 |
+
"version": "1.3.3",
|
678 |
+
"resolved": "https://registry.npmjs.org/coffee-script/-/coffee-script-1.3.3.tgz",
|
679 |
+
"integrity": "sha1-FQ1rTLUiiUNp7+1qIQHCC8f0pPQ=",
|
680 |
+
"dev": true
|
681 |
+
},
|
682 |
"coffeescript": {
|
683 |
"version": "1.10.0",
|
684 |
"resolved": "https://registry.npmjs.org/coffeescript/-/coffeescript-1.10.0.tgz",
|
2658 |
"integrity": "sha1-D8GqoIig4+8Ovi2IMbqw3PiEUGE=",
|
2659 |
"dev": true
|
2660 |
},
|
|
|
|
|
|
|
|
|
|
|
|
|
2661 |
"colors": {
|
2662 |
"version": "0.6.2",
|
2663 |
"resolved": "https://registry.npmjs.org/colors/-/colors-0.6.2.tgz",
|
readme.md
CHANGED
@@ -67,6 +67,11 @@ If you wanna learn more about the <a href="http://www.codeinwp.com/blog/fastest-
|
|
67 |
* fr_FR translation by Jacques Soule of http://wordpress-pour-vous.com/
|
68 |
|
69 |
## Changelog ##
|
|
|
|
|
|
|
|
|
|
|
70 |
### 3.5.0 - 2019-02-11 ###
|
71 |
|
72 |
* Fix issue with Gutenberg
|
@@ -535,6 +540,7 @@ Alternatively you can also follow the following steps to install the WP Product
|
|
535 |
|
536 |
|
537 |
|
|
|
538 |
### How to activate user reviews ###
|
539 |
|
540 |
By default user reviews are disabled since not all the themes are compatible with this option due to different designs for the comment box. You can easily activate them from General Settings
|
@@ -707,6 +713,12 @@ https://themeisle.com/contact
|
|
707 |
= Amazon Integration Documentation =
|
708 |
[https://docs.themeisle.com/article/448-amazon-integration-documentation](https://docs.themeisle.com/article/448-amazon-integration-documentation)
|
709 |
|
|
|
|
|
|
|
|
|
|
|
|
|
710 |
== Upgrade Notice ==
|
711 |
|
712 |
### 3.0 ###
|
67 |
* fr_FR translation by Jacques Soule of http://wordpress-pour-vous.com/
|
68 |
|
69 |
## Changelog ##
|
70 |
+
### 3.5.1 - 2019-02-13 ###
|
71 |
+
|
72 |
+
* Fix issue with option not showing to add a review in the post editor screen
|
73 |
+
|
74 |
+
|
75 |
### 3.5.0 - 2019-02-11 ###
|
76 |
|
77 |
* Fix issue with Gutenberg
|
540 |
|
541 |
|
542 |
|
543 |
+
|
544 |
### How to activate user reviews ###
|
545 |
|
546 |
By default user reviews are disabled since not all the themes are compatible with this option due to different designs for the comment box. You can easily activate them from General Settings
|
713 |
= Amazon Integration Documentation =
|
714 |
[https://docs.themeisle.com/article/448-amazon-integration-documentation](https://docs.themeisle.com/article/448-amazon-integration-documentation)
|
715 |
|
716 |
+
= In WPPR, how do I,. =
|
717 |
+
[https://docs.themeisle.com/article/969-in-wppr-how-do-i](https://docs.themeisle.com/article/969-in-wppr-how-do-i)
|
718 |
+
|
719 |
+
= How to display product title and image both in review comparison table =
|
720 |
+
[https://docs.themeisle.com/article/981-how-to-display-product-title-and-image-both-in-review-comparison-table](https://docs.themeisle.com/article/981-how-to-display-product-title-and-image-both-in-review-comparison-table)
|
721 |
+
|
722 |
== Upgrade Notice ==
|
723 |
|
724 |
### 3.0 ###
|
readme.txt
CHANGED
@@ -67,6 +67,11 @@ If you wanna learn more about the <a href="http://www.codeinwp.com/blog/fastest-
|
|
67 |
* fr_FR translation by Jacques Soule of http://wordpress-pour-vous.com/
|
68 |
|
69 |
== Changelog ==
|
|
|
|
|
|
|
|
|
|
|
70 |
= 3.5.0 - 2019-02-11 =
|
71 |
|
72 |
* Fix issue with Gutenberg
|
67 |
* fr_FR translation by Jacques Soule of http://wordpress-pour-vous.com/
|
68 |
|
69 |
== Changelog ==
|
70 |
+
= 3.5.1 - 2019-02-13 =
|
71 |
+
|
72 |
+
* Fix issue with option not showing to add a review in the post editor screen
|
73 |
+
|
74 |
+
|
75 |
= 3.5.0 - 2019-02-11 =
|
76 |
|
77 |
* Fix issue with Gutenberg
|
themeisle-hash.json
CHANGED
@@ -1 +1 @@
|
|
1 |
-
{"class-wppr-autoloader.php":"87f19e0b5e3819c2edbd7e3e49b489f9","class-wppr-recursive-filter.php":"6c74b0e7c04529d797ae9689d9a44c8d","index.php":"c76772901fa1b2b14aa3ba32d7773c8a","uninstall.php":"7c6d36652e8dcf013f2c246f4a289acf","wp-product-review.php":"
|
1 |
+
{"class-wppr-autoloader.php":"87f19e0b5e3819c2edbd7e3e49b489f9","class-wppr-recursive-filter.php":"6c74b0e7c04529d797ae9689d9a44c8d","index.php":"c76772901fa1b2b14aa3ba32d7773c8a","uninstall.php":"7c6d36652e8dcf013f2c246f4a289acf","wp-product-review.php":"edcafe531b2f8a6518acaa5d841ea382"}
|
vendor/autoload.php
CHANGED
@@ -4,4 +4,4 @@
|
|
4 |
|
5 |
require_once __DIR__ . '/composer' . '/autoload_real.php';
|
6 |
|
7 |
-
return
|
4 |
|
5 |
require_once __DIR__ . '/composer' . '/autoload_real.php';
|
6 |
|
7 |
+
return ComposerAutoloaderInit8eff41e360b9f724bc112d5009c01a7d::getLoader();
|
vendor/autoload_52.php
CHANGED
@@ -4,4 +4,4 @@
|
|
4 |
|
5 |
require_once dirname(__FILE__) . '/composer'.'/autoload_real_52.php';
|
6 |
|
7 |
-
return
|
4 |
|
5 |
require_once dirname(__FILE__) . '/composer'.'/autoload_real_52.php';
|
6 |
|
7 |
+
return ComposerAutoloaderInit8216529ea4688073c251196687eea168::getLoader();
|
vendor/composer/autoload_real.php
CHANGED
@@ -2,7 +2,7 @@
|
|
2 |
|
3 |
// autoload_real.php @generated by Composer
|
4 |
|
5 |
-
class
|
6 |
{
|
7 |
private static $loader;
|
8 |
|
@@ -19,9 +19,9 @@ class ComposerAutoloaderInita782336d552cb538f39c8cfe5ec6b2ad
|
|
19 |
return self::$loader;
|
20 |
}
|
21 |
|
22 |
-
spl_autoload_register(array('
|
23 |
self::$loader = $loader = new \Composer\Autoload\ClassLoader();
|
24 |
-
spl_autoload_unregister(array('
|
25 |
|
26 |
$map = require __DIR__ . '/autoload_namespaces.php';
|
27 |
foreach ($map as $namespace => $path) {
|
@@ -42,14 +42,14 @@ class ComposerAutoloaderInita782336d552cb538f39c8cfe5ec6b2ad
|
|
42 |
|
43 |
$includeFiles = require __DIR__ . '/autoload_files.php';
|
44 |
foreach ($includeFiles as $fileIdentifier => $file) {
|
45 |
-
|
46 |
}
|
47 |
|
48 |
return $loader;
|
49 |
}
|
50 |
}
|
51 |
|
52 |
-
function
|
53 |
{
|
54 |
if (empty($GLOBALS['__composer_autoload_files'][$fileIdentifier])) {
|
55 |
require $file;
|
2 |
|
3 |
// autoload_real.php @generated by Composer
|
4 |
|
5 |
+
class ComposerAutoloaderInit8eff41e360b9f724bc112d5009c01a7d
|
6 |
{
|
7 |
private static $loader;
|
8 |
|
19 |
return self::$loader;
|
20 |
}
|
21 |
|
22 |
+
spl_autoload_register(array('ComposerAutoloaderInit8eff41e360b9f724bc112d5009c01a7d', 'loadClassLoader'), true, true);
|
23 |
self::$loader = $loader = new \Composer\Autoload\ClassLoader();
|
24 |
+
spl_autoload_unregister(array('ComposerAutoloaderInit8eff41e360b9f724bc112d5009c01a7d', 'loadClassLoader'));
|
25 |
|
26 |
$map = require __DIR__ . '/autoload_namespaces.php';
|
27 |
foreach ($map as $namespace => $path) {
|
42 |
|
43 |
$includeFiles = require __DIR__ . '/autoload_files.php';
|
44 |
foreach ($includeFiles as $fileIdentifier => $file) {
|
45 |
+
composerRequire8eff41e360b9f724bc112d5009c01a7d($fileIdentifier, $file);
|
46 |
}
|
47 |
|
48 |
return $loader;
|
49 |
}
|
50 |
}
|
51 |
|
52 |
+
function composerRequire8eff41e360b9f724bc112d5009c01a7d($fileIdentifier, $file)
|
53 |
{
|
54 |
if (empty($GLOBALS['__composer_autoload_files'][$fileIdentifier])) {
|
55 |
require $file;
|
vendor/composer/autoload_real_52.php
CHANGED
@@ -2,7 +2,7 @@
|
|
2 |
|
3 |
// autoload_real_52.php generated by xrstf/composer-php52
|
4 |
|
5 |
-
class
|
6 |
private static $loader;
|
7 |
|
8 |
public static function loadClassLoader($class) {
|
@@ -19,9 +19,9 @@ class ComposerAutoloaderInitd52742cd39f648242626aa88f81155f0 {
|
|
19 |
return self::$loader;
|
20 |
}
|
21 |
|
22 |
-
spl_autoload_register(array('
|
23 |
self::$loader = $loader = new xrstf_Composer52_ClassLoader();
|
24 |
-
spl_autoload_unregister(array('
|
25 |
|
26 |
$vendorDir = dirname(dirname(__FILE__));
|
27 |
$baseDir = dirname($vendorDir);
|
2 |
|
3 |
// autoload_real_52.php generated by xrstf/composer-php52
|
4 |
|
5 |
+
class ComposerAutoloaderInit8216529ea4688073c251196687eea168 {
|
6 |
private static $loader;
|
7 |
|
8 |
public static function loadClassLoader($class) {
|
19 |
return self::$loader;
|
20 |
}
|
21 |
|
22 |
+
spl_autoload_register(array('ComposerAutoloaderInit8216529ea4688073c251196687eea168', 'loadClassLoader'), true /*, true */);
|
23 |
self::$loader = $loader = new xrstf_Composer52_ClassLoader();
|
24 |
+
spl_autoload_unregister(array('ComposerAutoloaderInit8216529ea4688073c251196687eea168', 'loadClassLoader'));
|
25 |
|
26 |
$vendorDir = dirname(dirname(__FILE__));
|
27 |
$baseDir = dirname($vendorDir);
|
wp-product-review.php
CHANGED
@@ -15,7 +15,7 @@
|
|
15 |
* Plugin Name: WP Product Review Lite
|
16 |
* Plugin URI: https://themeisle.com/plugins/wp-product-review/
|
17 |
* Description: The highest rated and most complete review plugin, now with rich snippets support. Easily turn your basic posts into in-depth reviews.
|
18 |
-
* Version: 3.5.
|
19 |
* Author: ThemeIsle
|
20 |
* Author URI: https://themeisle.com/
|
21 |
* Requires at least: 3.5
|
@@ -67,7 +67,7 @@ register_deactivation_hook( __FILE__, 'deactivate_wppr' );
|
|
67 |
*/
|
68 |
function run_wppr() {
|
69 |
|
70 |
-
define( 'WPPR_LITE_VERSION', '3.5.
|
71 |
define( 'WPPR_PATH', dirname( __FILE__ ) );
|
72 |
define( 'WPPR_SLUG', 'wppr' );
|
73 |
define( 'WPPR_UPSELL_LINK', 'https://themeisle.com/plugins/wp-product-review/' );
|
15 |
* Plugin Name: WP Product Review Lite
|
16 |
* Plugin URI: https://themeisle.com/plugins/wp-product-review/
|
17 |
* Description: The highest rated and most complete review plugin, now with rich snippets support. Easily turn your basic posts into in-depth reviews.
|
18 |
+
* Version: 3.5.1
|
19 |
* Author: ThemeIsle
|
20 |
* Author URI: https://themeisle.com/
|
21 |
* Requires at least: 3.5
|
67 |
*/
|
68 |
function run_wppr() {
|
69 |
|
70 |
+
define( 'WPPR_LITE_VERSION', '3.5.1' );
|
71 |
define( 'WPPR_PATH', dirname( __FILE__ ) );
|
72 |
define( 'WPPR_SLUG', 'wppr' );
|
73 |
define( 'WPPR_UPSELL_LINK', 'https://themeisle.com/plugins/wp-product-review/' );
|