Skip to content
This repository was archived by the owner on Aug 1, 2021. It is now read-only.

Commit 1f542c5

Browse files
update framework
1 parent 728816c commit 1f542c5

File tree

3 files changed

+14
-14
lines changed

3 files changed

+14
-14
lines changed

composer.lock

Lines changed: 5 additions & 5 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

vendor/composer/installed.json

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -114,25 +114,25 @@
114114
},
115115
{
116116
"name": "wp-content-framework/admin",
117-
"version": "v0.0.30",
118-
"version_normalized": "0.0.30.0",
117+
"version": "v0.0.31",
118+
"version_normalized": "0.0.31.0",
119119
"source": {
120120
"type": "git",
121121
"url": "https://github.com/wp-content-framework/admin.git",
122-
"reference": "0c3266b45c4308063b899a0d365986f53e9b3359"
122+
"reference": "0f4b45f5389ccfa390c6fbde6c1c5e6be6c82ef3"
123123
},
124124
"dist": {
125125
"type": "zip",
126-
"url": "https://api.github.com/repos/wp-content-framework/admin/zipball/0c3266b45c4308063b899a0d365986f53e9b3359",
127-
"reference": "0c3266b45c4308063b899a0d365986f53e9b3359",
126+
"url": "https://api.github.com/repos/wp-content-framework/admin/zipball/0f4b45f5389ccfa390c6fbde6c1c5e6be6c82ef3",
127+
"reference": "0f4b45f5389ccfa390c6fbde6c1c5e6be6c82ef3",
128128
"shasum": ""
129129
},
130130
"require": {
131131
"php": ">=5.6.0",
132132
"wp-content-framework/controller": "~0.0.1",
133133
"wp-content-framework/view": "~0.0.1"
134134
},
135-
"time": "2019-04-27T16:25:15+00:00",
135+
"time": "2019-04-27T17:11:44+00:00",
136136
"type": "library",
137137
"installation-source": "dist",
138138
"notification-url": "https://packagist.org/downloads/",

vendor/wp-content-framework/admin/src/classes/models/admin.php

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
/**
33
* WP_Framework_Admin Classes Models Admin
44
*
5-
* @version 0.0.30
5+
* @version 0.0.31
66
* @author Technote
77
* @copyright Technote All Rights Reserved
88
* @license http://www.opensource.org/licenses/gpl-2.0.php GNU General Public License, version 2
@@ -196,7 +196,7 @@ private function plugin_action_links( array $actions, $plugin_file, $plugin_data
196196
$action_links = $this->parse_config_links( $this->app->get_config( 'config', 'action_links' ), $plugin_data, $context );
197197
! empty( $action_links ) and $actions = array_merge( $action_links, $actions );
198198

199-
return $this->apply_filters( 'plugin_action_links', $actions );
199+
return $this->apply_filters( 'plugin_action_links', $actions, $plugin_file, $plugin_data, $context );
200200
}
201201

202202
/**
@@ -216,7 +216,7 @@ private function plugin_row_meta( array $plugin_meta, $plugin_file, $plugin_data
216216
$plugin_row_meta = $this->parse_config_links( $this->app->get_config( 'config', 'plugin_row_meta' ), $plugin_data, $status );
217217
! empty( $plugin_row_meta ) and $plugin_meta = array_merge( $plugin_meta, $plugin_row_meta );
218218

219-
return $this->apply_filters( 'plugin_row_meta', $plugin_meta );
219+
return $this->apply_filters( 'plugin_row_meta', $plugin_meta, $plugin_file, $plugin_data, $status );
220220
}
221221

222222
/**

0 commit comments

Comments
 (0)