Version Description
- Better PHP 7.2.x support
Download this release
Release Info
Developer | arisoft |
Plugin | ARI Adminer – WordPress Database Manager |
Version | 1.1.9 |
Comparing to | |
See all releases |
Code changes from version 1.1.8 to 1.1.9
- ari-adminer.php +1 -1
- includes/defines.php +1 -1
- libraries/arisoft/core/controllers/class-controller.php +1 -1
- libraries/arisoft/core/entities/class-entity.php +1 -1
- libraries/arisoft/core/models/class-model.php +1 -1
- libraries/arisoft/core/utils/{class-object.php → class-object-helper.php} +1 -1
- libraries/arisoft/core/views/class-view.php +1 -1
- readme.txt +8 -2
ari-adminer.php
CHANGED
@@ -3,7 +3,7 @@
|
|
3 |
Plugin Name: ARI Adminer
|
4 |
Plugin URI: http://wp-quiz.ari-soft.com/plugins/wordpress-adminer.html
|
5 |
Description: Powerful, compact and easy to use database manager plugin for WordPress.
|
6 |
-
Version: 1.1.
|
7 |
Author: ARI Soft
|
8 |
Author URI: http://www.ari-soft.com
|
9 |
Text Domain: ari-adminer
|
3 |
Plugin Name: ARI Adminer
|
4 |
Plugin URI: http://wp-quiz.ari-soft.com/plugins/wordpress-adminer.html
|
5 |
Description: Powerful, compact and easy to use database manager plugin for WordPress.
|
6 |
+
Version: 1.1.9
|
7 |
Author: ARI Soft
|
8 |
Author URI: http://www.ari-soft.com
|
9 |
Text Domain: ari-adminer
|
includes/defines.php
CHANGED
@@ -1,5 +1,5 @@
|
|
1 |
<?php
|
2 |
-
define( 'ARIADMINER_VERSION', '1.1.
|
3 |
define( 'ARIADMINER_SLUG', 'ari-adminer' );
|
4 |
define( 'ARIADMINER_ASSETS_URL', ARIADMINER_URL . 'assets/' );
|
5 |
define( 'ARIADMINER_VERSION_OPTION', 'ari_adminer' );
|
1 |
<?php
|
2 |
+
define( 'ARIADMINER_VERSION', '1.1.9' );
|
3 |
define( 'ARIADMINER_SLUG', 'ari-adminer' );
|
4 |
define( 'ARIADMINER_ASSETS_URL', ARIADMINER_URL . 'assets/' );
|
5 |
define( 'ARIADMINER_VERSION_OPTION', 'ari_adminer' );
|
libraries/arisoft/core/controllers/class-controller.php
CHANGED
@@ -2,7 +2,7 @@
|
|
2 |
namespace Ari\Controllers;
|
3 |
|
4 |
use Ari\Utils\Request as Request;
|
5 |
-
use Ari\Utils\
|
6 |
|
7 |
class Controller {
|
8 |
private $model = null;
|
2 |
namespace Ari\Controllers;
|
3 |
|
4 |
use Ari\Utils\Request as Request;
|
5 |
+
use Ari\Utils\Object_Helper as Object_Helper;
|
6 |
|
7 |
class Controller {
|
8 |
private $model = null;
|
libraries/arisoft/core/entities/class-entity.php
CHANGED
@@ -1,7 +1,7 @@
|
|
1 |
<?php
|
2 |
namespace Ari\Entities;
|
3 |
|
4 |
-
use Ari\Utils\
|
5 |
|
6 |
class Entity {
|
7 |
protected $db_tbl = '';
|
1 |
<?php
|
2 |
namespace Ari\Entities;
|
3 |
|
4 |
+
use Ari\Utils\Object_Helper as Object_Helper;
|
5 |
|
6 |
class Entity {
|
7 |
protected $db_tbl = '';
|
libraries/arisoft/core/models/class-model.php
CHANGED
@@ -1,7 +1,7 @@
|
|
1 |
<?php
|
2 |
namespace Ari\Models;
|
3 |
|
4 |
-
use Ari\Utils\
|
5 |
|
6 |
class Model {
|
7 |
private $name = null;
|
1 |
<?php
|
2 |
namespace Ari\Models;
|
3 |
|
4 |
+
use Ari\Utils\Object_Helper as Object_Helper;
|
5 |
|
6 |
class Model {
|
7 |
private $name = null;
|
libraries/arisoft/core/utils/{class-object.php → class-object-helper.php}
RENAMED
@@ -1,7 +1,7 @@
|
|
1 |
<?php
|
2 |
namespace Ari\Utils;
|
3 |
|
4 |
-
class
|
5 |
public static function extract_name( $obj ) {
|
6 |
$class = get_class( $obj );
|
7 |
$class = explode( '\\', $class );
|
1 |
<?php
|
2 |
namespace Ari\Utils;
|
3 |
|
4 |
+
class Object_Helper {
|
5 |
public static function extract_name( $obj ) {
|
6 |
$class = get_class( $obj );
|
7 |
$class = explode( '\\', $class );
|
libraries/arisoft/core/views/class-view.php
CHANGED
@@ -2,7 +2,7 @@
|
|
2 |
namespace Ari\Views;
|
3 |
|
4 |
use Ari\Utils\Filter as Filter;
|
5 |
-
use Ari\Utils\
|
6 |
|
7 |
class View {
|
8 |
protected $model = null;
|
2 |
namespace Ari\Views;
|
3 |
|
4 |
use Ari\Utils\Filter as Filter;
|
5 |
+
use Ari\Utils\Object_Helper as Object_Helper;
|
6 |
|
7 |
class View {
|
8 |
protected $model = null;
|
readme.txt
CHANGED
@@ -3,8 +3,8 @@ Contributors: arisoft
|
|
3 |
Donate link: http://wp-quiz.ari-soft.com/plugins/wordpress-adminer.html
|
4 |
Tags: adminer, sql, database, mysql, report, sqlite, table, postgresql, dump, backup, import, export, phpmyadmin
|
5 |
Requires at least: 3.4
|
6 |
-
Tested up to: 4.9.
|
7 |
-
Stable tag: 1.1.
|
8 |
License: GPLv2 or later
|
9 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
10 |
|
@@ -74,6 +74,9 @@ Sure, it is available [here](http://www.ari-soft.com/docs/wordpress/ari-adminer/
|
|
74 |
|
75 |
== Changelog ==
|
76 |
|
|
|
|
|
|
|
77 |
= 1.1.8 =
|
78 |
* Installer improved: if utf8mb4 charset is not supported by database, use utf8
|
79 |
|
@@ -132,6 +135,9 @@ Sure, it is available [here](http://www.ari-soft.com/docs/wordpress/ari-adminer/
|
|
132 |
|
133 |
== Upgrade Notice ==
|
134 |
|
|
|
|
|
|
|
135 |
= 1.1.8 =
|
136 |
* Installer improved: if utf8mb4 charset is not supported by database, use utf8
|
137 |
|
3 |
Donate link: http://wp-quiz.ari-soft.com/plugins/wordpress-adminer.html
|
4 |
Tags: adminer, sql, database, mysql, report, sqlite, table, postgresql, dump, backup, import, export, phpmyadmin
|
5 |
Requires at least: 3.4
|
6 |
+
Tested up to: 4.9.4
|
7 |
+
Stable tag: 1.1.9
|
8 |
License: GPLv2 or later
|
9 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
10 |
|
74 |
|
75 |
== Changelog ==
|
76 |
|
77 |
+
= 1.1.9 =
|
78 |
+
* Better PHP 7.2.x support
|
79 |
+
|
80 |
= 1.1.8 =
|
81 |
* Installer improved: if utf8mb4 charset is not supported by database, use utf8
|
82 |
|
135 |
|
136 |
== Upgrade Notice ==
|
137 |
|
138 |
+
= 1.1.9 =
|
139 |
+
* Better PHP 7.2.x support
|
140 |
+
|
141 |
= 1.1.8 =
|
142 |
* Installer improved: if utf8mb4 charset is not supported by database, use utf8
|
143 |
|