Changeset 1607784
- Timestamp:
- 03/04/2017 12:27:17 PM (9 years ago)
- Location:
- wp-config-file-editor/trunk
- Files:
-
- 7 edited
-
Installer/Installer.class.php (modified) (2 diffs)
-
Libraries/InstallerService.abstract.php (modified) (1 diff)
-
readme.txt (modified) (2 diffs)
-
vendor/xptrdev/WPPluginFramework/Include/Forms/Fields/Array.class.php (modified) (1 diff)
-
vendor/xptrdev/WPPluginFramework/Include/Forms/Fields/List.class.php (modified) (1 diff)
-
vendor/xptrdev/WPPluginFramework/Include/Services/Service.abstract.php (modified) (1 diff)
-
wp-config-file-editor.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
wp-config-file-editor/trunk/Installer/Installer.class.php
r1587331 r1607784 54 54 '1.6.3', 55 55 56 56 57 '1.6.4', 58 59 60 '1.6.5', 57 61 58 62 ); … … 115 119 { 116 120 # Create new installer 117 self::$instance = new Installer( new Factory( __NAMESPACE__ ) ); 121 $factory = new Factory( __NAMESPACE__ ); 122 123 self::$instance = new Installer( $factory ); 118 124 119 125 # Install or upgrade -
wp-config-file-editor/trunk/Libraries/InstallerService.abstract.php
r1375889 r1607784 47 47 public function __construct( \WPPFW\Obj\IFactory & $factory ) 48 48 { 49 parent::__construct( new \WPPFW\MVC\Model\State\GlobalWPOptionsModelState( $factory, get_class( $this ) ) ); 49 50 $stateAdapter = new \WPPFW\MVC\Model\State\GlobalWPOptionsModelState( $factory, get_class( $this ) ); 51 52 parent::__construct( $stateAdapter ); 50 53 51 54 $this->currentVersion = $this->_getCurrentVersion(); -
wp-config-file-editor/trunk/readme.txt
r1587324 r1607784 5 5 Requires at least: 4.0 6 6 Tested up to: 4.7.2 7 Stable tag: 1.6. 47 Stable tag: 1.6.5 8 8 License: GPLv2 or later 9 9 License URI: http://www.gnu.org/licenses/gpl-2.0.html … … 278 278 == Changelog == 279 279 280 = 1.6.5 = 281 * Fix: PHP Strict Errors (PHP 7 Compatibility) 282 280 283 = 1.6.4 = 281 284 * Enhance: Don't automatically delete emergency backup -
wp-config-file-editor/trunk/vendor/xptrdev/WPPluginFramework/Include/Forms/Fields/Array.class.php
r1245413 r1607784 25 25 * @return {FormArrayField|IField} 26 26 */ 27 public function __construct($name, IField &$fieldPrototype) {27 public function __construct($name, IField $fieldPrototype) { 28 28 # Init 29 29 $this->fieldPrototype =& $fieldPrototype; -
wp-config-file-editor/trunk/vendor/xptrdev/WPPluginFramework/Include/Forms/Fields/List.class.php
r1255272 r1607784 28 28 * @param IField $field 29 29 */ 30 public function & addChain(FormFieldBase &$field)30 public function & addChain(FormFieldBase $field) 31 31 { 32 32 -
wp-config-file-editor/trunk/vendor/xptrdev/WPPluginFramework/Include/Services/Service.abstract.php
r1046133 r1607784 85 85 * @return {ProxyBase|ServiceBase} 86 86 */ 87 public function & createServiceFront(IProxy &$proxy) {87 public function & createServiceFront(IProxy $proxy) { 88 88 # Initialize 89 89 $serviceFrontFactory =& $this->serviceFrontFactory; -
wp-config-file-editor/trunk/wp-config-file-editor.php
r1587331 r1607784 7 7 * Author: AHMeD SAiD 8 8 * Author URI: http://xptrdev.com 9 * Version: 1.6. 49 * Version: 1.6.5 10 10 * Description: Modify Wordpress wp-config.php file values using a Simple User Interface Form, In additional is can be used to change wide system parameters 11 11 * License: GPL2
Note: See TracChangeset
for help on using the changeset viewer.