Changeset 2216116
- Timestamp:
- 12/21/2019 01:28:48 AM (6 years ago)
- Location:
- social-feeder/trunk
- Files:
-
- 7 edited
-
README.txt (modified) (2 diffs)
-
app/Config/app.php (modified) (1 diff)
-
plugin.php (modified) (1 diff)
-
vendor/10quality/wpmvc-core/src/psr4/Bridge.php (modified) (3 diffs)
-
vendor/10quality/wpmvc-core/src/psr4/Contracts/Loggable.php (modified) (2 diffs)
-
vendor/10quality/wpmvc-core/src/psr4/Log.php (modified) (2 diffs)
-
vendor/composer/installed.json (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
social-feeder/trunk/README.txt
r2206927 r2216116 6 6 Requires PHP: 5.4 7 7 Tested up to: 5.3 8 Stable tag: 1.0. 58 Stable tag: 1.0.6 9 9 License: GPLv3 10 10 License URI: https://www.gnu.org/licenses/gpl-3.0.html … … 72 72 == Changelog == 73 73 74 = 1.0.6 = 75 *Release Date - 20 December 2019* 76 77 * Framework files updated. 78 74 79 = 1.0.5 = 75 80 *Release Date - 5 December 2019* -
social-feeder/trunk/app/Config/app.php
r2206927 r2216116 21 21 ], 22 22 23 'version' => '1.0. 5',23 'version' => '1.0.6', 24 24 25 25 'autoenqueue' => [ -
social-feeder/trunk/plugin.php
r2206927 r2216116 4 4 Plugin URI: https://www.10quality.com/product/social-feeder-pro/ 5 5 Description: Social media feeds plugin. Includes [ Widget and Shortcode ] to integrate and display [ Facebook, Twitter and Instagram ] feed. 6 Version: 1.0. 56 Version: 1.0.6 7 7 Author: 10 Quality 8 8 Author URI: https://www.10quality.com/ -
social-feeder/trunk/vendor/10quality/wpmvc-core/src/psr4/Bridge.php
r2206185 r2216116 21 21 * @license MIT 22 22 * @package WPMVC 23 * @version 3.1. 523 * @version 3.1.8 24 24 */ 25 25 abstract class Bridge implements Plugable … … 268 268 { 269 269 $this->mvc->view->show( $view, $params ); 270 } 271 272 /** 273 * Returns view based on the parameters passed by. 274 * @since 3.1.8 275 * 276 * @param string $view Name and location of the view within "theme/views" path. 277 * @param array $params View parameters passed by. 278 * 279 * @return string 280 */ 281 public function get_view( $view, $params = array() ) 282 { 283 return $this->mvc->view->get( $view, $params ); 270 284 } 271 285 … … 863 877 { 864 878 for ( $i = count( $this->models )-1; $i >= 0; --$i ) { 865 if ( $this->models[$i]->type === $type ) 879 if ( is_object( $this->models[$i] ) 880 && $this->models[$i]->type === $type 881 ) 866 882 add_post_type_support( $type, $this->models[$i]->registry_supports ); 867 883 } -
social-feeder/trunk/vendor/10quality/wpmvc-core/src/psr4/Contracts/Loggable.php
r2097713 r2216116 12 12 * @license MIT 13 13 * @package Amostajo\WPPluginCore 14 * @version 1.0.014 * @version 3.1.8 15 15 */ 16 16 interface Loggable … … 43 43 * @param array $values Value(s) to debug. 44 44 */ 45 public static function debug( $message, $values = []);45 public static function debug( $message, $values = null ); 46 46 47 47 /** -
social-feeder/trunk/vendor/10quality/wpmvc-core/src/psr4/Log.php
r2206927 r2216116 14 14 * @license MIT 15 15 * @package WPMVC 16 * @version 3.1. 716 * @version 3.1.8 17 17 */ 18 18 class Log implements Loggable … … 93 93 * @param array $values Value(s) to debug. 94 94 */ 95 public static function debug( $message, $values = [])95 public static function debug( $message, $values = null ) 96 96 { 97 97 $logger = self::instance(); 98 98 if ( $logger ) { 99 99 $logger->debug( 100 $message, 101 is_array( $values ) 102 ? $values 103 : ( is_object( $values ) 104 ? (array)$values 105 : [ $values ] 100 is_string( $message ) ? $message : 'value', 101 $values === null && ! is_string( $message ) 102 ? ( is_array( $message ) ? $message : [ $message ] ) 103 : ( is_array( $values ) 104 ? $values 105 : ( is_object( $values ) 106 ? (array)$values 107 : [ $values ] 108 ) 106 109 ) 107 110 ); -
social-feeder/trunk/vendor/composer/installed.json
r2206927 r2216116 575 575 { 576 576 "name": "10quality/wpmvc-core", 577 "version": "v3.1. 7",578 "version_normalized": "3.1. 7.0",577 "version": "v3.1.8", 578 "version_normalized": "3.1.8.0", 579 579 "source": { 580 580 "type": "git", 581 581 "url": "https://github.com/10quality/wpmvc-core.git", 582 "reference": " 9c7294d7d2d9ea4e85ed06737cdbce7e7d2e4adb"583 }, 584 "dist": { 585 "type": "zip", 586 "url": "https://api.github.com/repos/10quality/wpmvc-core/zipball/ 9c7294d7d2d9ea4e85ed06737cdbce7e7d2e4adb",587 "reference": " 9c7294d7d2d9ea4e85ed06737cdbce7e7d2e4adb",582 "reference": "ea6981d478141087c5de83dcee55901156f1599c" 583 }, 584 "dist": { 585 "type": "zip", 586 "url": "https://api.github.com/repos/10quality/wpmvc-core/zipball/ea6981d478141087c5de83dcee55901156f1599c", 587 "reference": "ea6981d478141087c5de83dcee55901156f1599c", 588 588 "shasum": "" 589 589 }, … … 598 598 "phpunit/phpunit": "7.5.*" 599 599 }, 600 "time": "2019-12- 06T01:09:17+00:00",600 "time": "2019-12-14T01:30:41+00:00", 601 601 "type": "library", 602 602 "installation-source": "source",
Note: See TracChangeset
for help on using the changeset viewer.