Version Description
- Remove footer credits setting, replaced by core Genesis 3.1 setting.
- Increase minimum Genesis version to 3.1.0.
- Increase minimum WordPress version to 5.0.0.
Download this release
Release Info
| Developer | nathanrice |
| Plugin | |
| Version | 2.3.0 |
| Comparing to | |
| See all releases | |
Code changes from version 2.2.2 to 2.3.0
- Gruntfile.js +0 -96
- composer.json +4 -2
- composer.lock +552 -21
- genesis-simple-edits.php +1 -1
- includes/class-genesis-simple-edits-admin.php +4 -9
- includes/class-genesis-simple-edits-core.php +0 -24
- includes/class-genesis-simple-edits.php +13 -3
- includes/views/admin.php +0 -19
- languages/genesis-simple-edits.pot +52 -89
- package-lock.json +4 -0
- package.json +3 -17
- plugin.php +7 -1
- readme.txt +10 -5
Gruntfile.js
DELETED
|
@@ -1,96 +0,0 @@
|
|
| 1 |
-
'use strict';
|
| 2 |
-
|
| 3 |
-
module.exports = function(grunt) {
|
| 4 |
-
|
| 5 |
-
// Load tasks
|
| 6 |
-
require('load-grunt-tasks')(grunt);
|
| 7 |
-
|
| 8 |
-
grunt.initConfig({
|
| 9 |
-
pkg: grunt.file.readJSON('package.json'),
|
| 10 |
-
|
| 11 |
-
|
| 12 |
-
// Dependencies
|
| 13 |
-
|
| 14 |
-
// PHP
|
| 15 |
-
|
| 16 |
-
// Lint .php files for syntax errors
|
| 17 |
-
phplint: {
|
| 18 |
-
all: [ '*.php', 'lib/**/*.php' ]
|
| 19 |
-
},
|
| 20 |
-
|
| 21 |
-
|
| 22 |
-
// I18n
|
| 23 |
-
|
| 24 |
-
// Add text domain as last argument of i18n functions
|
| 25 |
-
addtextdomain: {
|
| 26 |
-
php: {
|
| 27 |
-
files: {
|
| 28 |
-
src: [
|
| 29 |
-
'*.php',
|
| 30 |
-
'lib/**/*.php'
|
| 31 |
-
]
|
| 32 |
-
}
|
| 33 |
-
}
|
| 34 |
-
},
|
| 35 |
-
|
| 36 |
-
// Check text domain is last argument of i18n functions
|
| 37 |
-
checktextdomain: {
|
| 38 |
-
options: {
|
| 39 |
-
text_domain: '<%= pkg.name %>',
|
| 40 |
-
keywords: [
|
| 41 |
-
'__:1,2d',
|
| 42 |
-
'_e:1,2d',
|
| 43 |
-
'_x:1,2c,3d',
|
| 44 |
-
'_ex:1,2c,3d',
|
| 45 |
-
'_n:1,2,4d',
|
| 46 |
-
'_nx:1,2,4c,5d',
|
| 47 |
-
'_n_noop:1,2,3d',
|
| 48 |
-
'_nx_noop:1,2,3c,4d',
|
| 49 |
-
'esc_attr__:1,2d',
|
| 50 |
-
'esc_html__:1,2d',
|
| 51 |
-
'esc_attr_e:1,2d',
|
| 52 |
-
'esc_html_e:1,2d',
|
| 53 |
-
'esc_attr_x:1,2c,3d',
|
| 54 |
-
'esc_html_x:1,2c,3d'
|
| 55 |
-
]
|
| 56 |
-
},
|
| 57 |
-
files: {
|
| 58 |
-
expand: true,
|
| 59 |
-
src: [
|
| 60 |
-
'*.php',
|
| 61 |
-
'lib/**/*.php'
|
| 62 |
-
]
|
| 63 |
-
}
|
| 64 |
-
},
|
| 65 |
-
|
| 66 |
-
|
| 67 |
-
// Build language .pot file
|
| 68 |
-
makepot: {
|
| 69 |
-
plugin: {
|
| 70 |
-
options: {
|
| 71 |
-
domainPath: '/languages',
|
| 72 |
-
processPot: function( pot ) {
|
| 73 |
-
pot.headers['report-msgid-bugs-to'] = 'StudioPress <translations@studiopress.com>';
|
| 74 |
-
pot.headers['last-translator'] = 'StudioPress <translations@studiopress.com>';
|
| 75 |
-
pot.headers['language-team'] = 'English <translations@studiopress.com>';
|
| 76 |
-
pot.headers['plural-forms'] = 'nplurals=2; plural=n != 1;';
|
| 77 |
-
pot.headers['x-generator'] = 'grunt-wp-i18n 0.4.4';
|
| 78 |
-
pot.headers['x-poedit-basepath'] = '.';
|
| 79 |
-
pot.headers['x-poedit-language'] = 'English';
|
| 80 |
-
pot.headers['x-poedit-country'] = 'UNITED STATES';
|
| 81 |
-
pot.headers['x-poedit-sourcecharset'] = 'utf-8';
|
| 82 |
-
pot.headers['x-poedit-keywordslist'] = '__;_e;_x:1,2c;_ex:1,2c;_n:1,2;_nx:1,2,4c;_n_noop:1,2;_nx_noop:1,2,3c;esc_attr__;esc_html__;esc_attr_e;esc_html_e;esc_attr_x:1,2c;esc_html_x:1,2c;';
|
| 83 |
-
pot.headers['x-poedit-bookmarks'] = '';
|
| 84 |
-
pot.headers['x-poedit-searchpath-0'] = '.';
|
| 85 |
-
pot.headers['x-textdomain-support'] = 'yes';
|
| 86 |
-
return pot;
|
| 87 |
-
},
|
| 88 |
-
type: 'wp-plugin'
|
| 89 |
-
}
|
| 90 |
-
}
|
| 91 |
-
},
|
| 92 |
-
|
| 93 |
-
|
| 94 |
-
});
|
| 95 |
-
|
| 96 |
-
};
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
composer.json
CHANGED
|
@@ -13,7 +13,8 @@
|
|
| 13 |
"dealerdirect/phpcodesniffer-composer-installer": "*",
|
| 14 |
"squizlabs/php_codesniffer": "^3.3.1",
|
| 15 |
"phpcompatibility/phpcompatibility-wp": "*",
|
| 16 |
-
"wp-coding-standards/wpcs": "^1"
|
|
|
|
| 17 |
},
|
| 18 |
"config": {
|
| 19 |
"sort-order": true
|
|
@@ -23,7 +24,8 @@
|
|
| 23 |
"scripts": {
|
| 24 |
"phpcs": "phpcs --standard=WordPress --ignore=vendor/,node_modules/,assets/ --extensions=php -p ./",
|
| 25 |
"phpcs-compat": "phpcs --extensions=php --standard=PHPCompatibilityWP --ignore=vendor/,node_modules/,assets/ --runtime-set testVersion 5.6- -p ./",
|
| 26 |
-
"phpcbf": "phpcbf --standard=WordPress --ignore=vendor/,node_modules/,assets/ --extensions=php -p ./"
|
|
|
|
| 27 |
},
|
| 28 |
"support": {
|
| 29 |
"issues": "https://github.com/studiopress/genesis-simple-edits/issues",
|
| 13 |
"dealerdirect/phpcodesniffer-composer-installer": "*",
|
| 14 |
"squizlabs/php_codesniffer": "^3.3.1",
|
| 15 |
"phpcompatibility/phpcompatibility-wp": "*",
|
| 16 |
+
"wp-coding-standards/wpcs": "^1",
|
| 17 |
+
"wp-cli/i18n-command": "^2.1"
|
| 18 |
},
|
| 19 |
"config": {
|
| 20 |
"sort-order": true
|
| 24 |
"scripts": {
|
| 25 |
"phpcs": "phpcs --standard=WordPress --ignore=vendor/,node_modules/,assets/ --extensions=php -p ./",
|
| 26 |
"phpcs-compat": "phpcs --extensions=php --standard=PHPCompatibilityWP --ignore=vendor/,node_modules/,assets/ --runtime-set testVersion 5.6- -p ./",
|
| 27 |
+
"phpcbf": "phpcbf --standard=WordPress --ignore=vendor/,node_modules/,assets/ --extensions=php -p ./",
|
| 28 |
+
"makepot": "wp i18n make-pot . languages/genesis-simple-edits.pot --headers='{ \"Report-Msgid-Bugs-To\": \"StudioPress <translations@studiopress.com>\" }' --exclude=bin/ --quiet"
|
| 29 |
},
|
| 30 |
"support": {
|
| 31 |
"issues": "https://github.com/studiopress/genesis-simple-edits/issues",
|
composer.lock
CHANGED
|
@@ -4,20 +4,20 @@
|
|
| 4 |
"Read more about it at https://getcomposer.org/doc/01-basic-usage.md#installing-dependencies",
|
| 5 |
"This file is @generated automatically"
|
| 6 |
],
|
| 7 |
-
"content-hash": "
|
| 8 |
"packages": [
|
| 9 |
{
|
| 10 |
"name": "composer/installers",
|
| 11 |
-
"version": "v1.
|
| 12 |
"source": {
|
| 13 |
"type": "git",
|
| 14 |
"url": "https://github.com/composer/installers.git",
|
| 15 |
-
"reference": "
|
| 16 |
},
|
| 17 |
"dist": {
|
| 18 |
"type": "zip",
|
| 19 |
-
"url": "https://api.github.com/repos/composer/installers/zipball/
|
| 20 |
-
"reference": "
|
| 21 |
"shasum": ""
|
| 22 |
},
|
| 23 |
"require": {
|
|
@@ -73,6 +73,7 @@
|
|
| 73 |
"RadPHP",
|
| 74 |
"SMF",
|
| 75 |
"Thelia",
|
|
|
|
| 76 |
"WolfCMS",
|
| 77 |
"agl",
|
| 78 |
"aimeos",
|
|
@@ -95,6 +96,7 @@
|
|
| 95 |
"installer",
|
| 96 |
"itop",
|
| 97 |
"joomla",
|
|
|
|
| 98 |
"kohana",
|
| 99 |
"laravel",
|
| 100 |
"lavalite",
|
|
@@ -124,7 +126,7 @@
|
|
| 124 |
"zend",
|
| 125 |
"zikula"
|
| 126 |
],
|
| 127 |
-
"time": "
|
| 128 |
}
|
| 129 |
],
|
| 130 |
"packages-dev": [
|
|
@@ -168,9 +170,9 @@
|
|
| 168 |
"authors": [
|
| 169 |
{
|
| 170 |
"name": "Franck Nijhof",
|
|
|
|
| 171 |
"email": "franck.nijhof@dealerdirect.com",
|
| 172 |
-
"homepage": "http://www.frenck.nl"
|
| 173 |
-
"role": "Developer / IT Manager"
|
| 174 |
}
|
| 175 |
],
|
| 176 |
"description": "PHP_CodeSniffer Standards Composer Installer Plugin",
|
|
@@ -194,18 +196,232 @@
|
|
| 194 |
],
|
| 195 |
"time": "2018-10-26T13:21:45+00:00"
|
| 196 |
},
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 197 |
{
|
| 198 |
"name": "phpcompatibility/php-compatibility",
|
| 199 |
-
"version": "9.
|
| 200 |
"source": {
|
| 201 |
"type": "git",
|
| 202 |
"url": "https://github.com/PHPCompatibility/PHPCompatibility.git",
|
| 203 |
-
"reference": "
|
| 204 |
},
|
| 205 |
"dist": {
|
| 206 |
"type": "zip",
|
| 207 |
-
"url": "https://api.github.com/repos/PHPCompatibility/PHPCompatibility/zipball/
|
| 208 |
-
"reference": "
|
| 209 |
"shasum": ""
|
| 210 |
},
|
| 211 |
"require": {
|
|
@@ -219,7 +435,7 @@
|
|
| 219 |
"phpunit/phpunit": "~4.5 || ^5.0 || ^6.0 || ^7.0"
|
| 220 |
},
|
| 221 |
"suggest": {
|
| 222 |
-
"dealerdirect/phpcodesniffer-composer-installer": "^0.
|
| 223 |
"roave/security-advisories": "dev-master || Helps prevent installing dependencies with known security issues."
|
| 224 |
},
|
| 225 |
"type": "phpcodesniffer-standard",
|
|
@@ -234,13 +450,13 @@
|
|
| 234 |
},
|
| 235 |
{
|
| 236 |
"name": "Wim Godden",
|
| 237 |
-
"
|
| 238 |
-
"
|
| 239 |
},
|
| 240 |
{
|
| 241 |
"name": "Juliette Reinders Folmer",
|
| 242 |
-
"
|
| 243 |
-
"
|
| 244 |
}
|
| 245 |
],
|
| 246 |
"description": "A set of sniffs for PHP_CodeSniffer that checks for PHP cross-version compatibility.",
|
|
@@ -250,7 +466,7 @@
|
|
| 250 |
"phpcs",
|
| 251 |
"standards"
|
| 252 |
],
|
| 253 |
-
"time": "
|
| 254 |
},
|
| 255 |
{
|
| 256 |
"name": "phpcompatibility/phpcompatibility-paragonie",
|
|
@@ -352,6 +568,55 @@
|
|
| 352 |
],
|
| 353 |
"time": "2018-10-07T18:31:37+00:00"
|
| 354 |
},
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 355 |
{
|
| 356 |
"name": "squizlabs/php_codesniffer",
|
| 357 |
"version": "3.4.2",
|
|
@@ -403,17 +668,283 @@
|
|
| 403 |
],
|
| 404 |
"time": "2019-04-10T23:49:02+00:00"
|
| 405 |
},
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 406 |
{
|
| 407 |
"name": "wp-coding-standards/wpcs",
|
| 408 |
"version": "1.2.1",
|
| 409 |
"source": {
|
| 410 |
"type": "git",
|
| 411 |
-
"url": "https://github.com/WordPress
|
| 412 |
"reference": "f328bcafd97377e8e5e5d7b244d5ddbf301a3a5c"
|
| 413 |
},
|
| 414 |
"dist": {
|
| 415 |
"type": "zip",
|
| 416 |
-
"url": "https://api.github.com/repos/WordPress
|
| 417 |
"reference": "f328bcafd97377e8e5e5d7b244d5ddbf301a3a5c",
|
| 418 |
"shasum": ""
|
| 419 |
},
|
|
@@ -453,7 +984,7 @@
|
|
| 453 |
"prefer-stable": true,
|
| 454 |
"prefer-lowest": false,
|
| 455 |
"platform": {
|
| 456 |
-
"php": "^5.
|
| 457 |
},
|
| 458 |
"platform-dev": {
|
| 459 |
"php": "^5.6 || ^7"
|
| 4 |
"Read more about it at https://getcomposer.org/doc/01-basic-usage.md#installing-dependencies",
|
| 5 |
"This file is @generated automatically"
|
| 6 |
],
|
| 7 |
+
"content-hash": "e14b51fdcfab2f6cc324dd21582f8b25",
|
| 8 |
"packages": [
|
| 9 |
{
|
| 10 |
"name": "composer/installers",
|
| 11 |
+
"version": "v1.7.0",
|
| 12 |
"source": {
|
| 13 |
"type": "git",
|
| 14 |
"url": "https://github.com/composer/installers.git",
|
| 15 |
+
"reference": "141b272484481432cda342727a427dc1e206bfa0"
|
| 16 |
},
|
| 17 |
"dist": {
|
| 18 |
"type": "zip",
|
| 19 |
+
"url": "https://api.github.com/repos/composer/installers/zipball/141b272484481432cda342727a427dc1e206bfa0",
|
| 20 |
+
"reference": "141b272484481432cda342727a427dc1e206bfa0",
|
| 21 |
"shasum": ""
|
| 22 |
},
|
| 23 |
"require": {
|
| 73 |
"RadPHP",
|
| 74 |
"SMF",
|
| 75 |
"Thelia",
|
| 76 |
+
"Whmcs",
|
| 77 |
"WolfCMS",
|
| 78 |
"agl",
|
| 79 |
"aimeos",
|
| 96 |
"installer",
|
| 97 |
"itop",
|
| 98 |
"joomla",
|
| 99 |
+
"known",
|
| 100 |
"kohana",
|
| 101 |
"laravel",
|
| 102 |
"lavalite",
|
| 126 |
"zend",
|
| 127 |
"zikula"
|
| 128 |
],
|
| 129 |
+
"time": "2019-08-12T15:00:31+00:00"
|
| 130 |
}
|
| 131 |
],
|
| 132 |
"packages-dev": [
|
| 170 |
"authors": [
|
| 171 |
{
|
| 172 |
"name": "Franck Nijhof",
|
| 173 |
+
"role": "Developer / IT Manager",
|
| 174 |
"email": "franck.nijhof@dealerdirect.com",
|
| 175 |
+
"homepage": "http://www.frenck.nl"
|
|
|
|
| 176 |
}
|
| 177 |
],
|
| 178 |
"description": "PHP_CodeSniffer Standards Composer Installer Plugin",
|
| 196 |
],
|
| 197 |
"time": "2018-10-26T13:21:45+00:00"
|
| 198 |
},
|
| 199 |
+
{
|
| 200 |
+
"name": "gettext/gettext",
|
| 201 |
+
"version": "v4.6.3",
|
| 202 |
+
"source": {
|
| 203 |
+
"type": "git",
|
| 204 |
+
"url": "https://github.com/oscarotero/Gettext.git",
|
| 205 |
+
"reference": "70c6ff2fecd275e6ef9cdd542f55939a3d1904d6"
|
| 206 |
+
},
|
| 207 |
+
"dist": {
|
| 208 |
+
"type": "zip",
|
| 209 |
+
"url": "https://api.github.com/repos/oscarotero/Gettext/zipball/70c6ff2fecd275e6ef9cdd542f55939a3d1904d6",
|
| 210 |
+
"reference": "70c6ff2fecd275e6ef9cdd542f55939a3d1904d6",
|
| 211 |
+
"shasum": ""
|
| 212 |
+
},
|
| 213 |
+
"require": {
|
| 214 |
+
"gettext/languages": "^2.3",
|
| 215 |
+
"php": ">=5.4.0"
|
| 216 |
+
},
|
| 217 |
+
"require-dev": {
|
| 218 |
+
"illuminate/view": "*",
|
| 219 |
+
"phpunit/phpunit": "^4.8|^5.7|^6.5",
|
| 220 |
+
"squizlabs/php_codesniffer": "^3.0",
|
| 221 |
+
"symfony/yaml": "~2",
|
| 222 |
+
"twig/extensions": "*",
|
| 223 |
+
"twig/twig": "^1.31|^2.0"
|
| 224 |
+
},
|
| 225 |
+
"suggest": {
|
| 226 |
+
"illuminate/view": "Is necessary if you want to use the Blade extractor",
|
| 227 |
+
"symfony/yaml": "Is necessary if you want to use the Yaml extractor/generator",
|
| 228 |
+
"twig/extensions": "Is necessary if you want to use the Twig extractor",
|
| 229 |
+
"twig/twig": "Is necessary if you want to use the Twig extractor"
|
| 230 |
+
},
|
| 231 |
+
"type": "library",
|
| 232 |
+
"autoload": {
|
| 233 |
+
"psr-4": {
|
| 234 |
+
"Gettext\\": "src"
|
| 235 |
+
}
|
| 236 |
+
},
|
| 237 |
+
"notification-url": "https://packagist.org/downloads/",
|
| 238 |
+
"license": [
|
| 239 |
+
"MIT"
|
| 240 |
+
],
|
| 241 |
+
"authors": [
|
| 242 |
+
{
|
| 243 |
+
"name": "Oscar Otero",
|
| 244 |
+
"role": "Developer",
|
| 245 |
+
"email": "oom@oscarotero.com",
|
| 246 |
+
"homepage": "http://oscarotero.com"
|
| 247 |
+
}
|
| 248 |
+
],
|
| 249 |
+
"description": "PHP gettext manager",
|
| 250 |
+
"homepage": "https://github.com/oscarotero/Gettext",
|
| 251 |
+
"keywords": [
|
| 252 |
+
"JS",
|
| 253 |
+
"gettext",
|
| 254 |
+
"i18n",
|
| 255 |
+
"mo",
|
| 256 |
+
"po",
|
| 257 |
+
"translation"
|
| 258 |
+
],
|
| 259 |
+
"time": "2019-07-15T12:56:31+00:00"
|
| 260 |
+
},
|
| 261 |
+
{
|
| 262 |
+
"name": "gettext/languages",
|
| 263 |
+
"version": "2.5.0",
|
| 264 |
+
"source": {
|
| 265 |
+
"type": "git",
|
| 266 |
+
"url": "https://github.com/mlocati/cldr-to-gettext-plural-rules.git",
|
| 267 |
+
"reference": "78db2d17933f0765a102f368a6663f057162ddbd"
|
| 268 |
+
},
|
| 269 |
+
"dist": {
|
| 270 |
+
"type": "zip",
|
| 271 |
+
"url": "https://api.github.com/repos/mlocati/cldr-to-gettext-plural-rules/zipball/78db2d17933f0765a102f368a6663f057162ddbd",
|
| 272 |
+
"reference": "78db2d17933f0765a102f368a6663f057162ddbd",
|
| 273 |
+
"shasum": ""
|
| 274 |
+
},
|
| 275 |
+
"require": {
|
| 276 |
+
"php": ">=5.3"
|
| 277 |
+
},
|
| 278 |
+
"require-dev": {
|
| 279 |
+
"phpunit/phpunit": "^4"
|
| 280 |
+
},
|
| 281 |
+
"bin": [
|
| 282 |
+
"bin/export-plural-rules",
|
| 283 |
+
"bin/export-plural-rules.php"
|
| 284 |
+
],
|
| 285 |
+
"type": "library",
|
| 286 |
+
"autoload": {
|
| 287 |
+
"psr-4": {
|
| 288 |
+
"Gettext\\Languages\\": "src/"
|
| 289 |
+
}
|
| 290 |
+
},
|
| 291 |
+
"notification-url": "https://packagist.org/downloads/",
|
| 292 |
+
"license": [
|
| 293 |
+
"MIT"
|
| 294 |
+
],
|
| 295 |
+
"authors": [
|
| 296 |
+
{
|
| 297 |
+
"name": "Michele Locati",
|
| 298 |
+
"role": "Developer",
|
| 299 |
+
"email": "mlocati@gmail.com"
|
| 300 |
+
}
|
| 301 |
+
],
|
| 302 |
+
"description": "gettext languages with plural rules",
|
| 303 |
+
"homepage": "https://github.com/mlocati/cldr-to-gettext-plural-rules",
|
| 304 |
+
"keywords": [
|
| 305 |
+
"cldr",
|
| 306 |
+
"i18n",
|
| 307 |
+
"internationalization",
|
| 308 |
+
"l10n",
|
| 309 |
+
"language",
|
| 310 |
+
"languages",
|
| 311 |
+
"localization",
|
| 312 |
+
"php",
|
| 313 |
+
"plural",
|
| 314 |
+
"plural rules",
|
| 315 |
+
"plurals",
|
| 316 |
+
"translate",
|
| 317 |
+
"translations",
|
| 318 |
+
"unicode"
|
| 319 |
+
],
|
| 320 |
+
"time": "2018-11-13T22:06:07+00:00"
|
| 321 |
+
},
|
| 322 |
+
{
|
| 323 |
+
"name": "mck89/peast",
|
| 324 |
+
"version": "v1.9.2",
|
| 325 |
+
"source": {
|
| 326 |
+
"type": "git",
|
| 327 |
+
"url": "https://github.com/mck89/peast.git",
|
| 328 |
+
"reference": "7c9e487a0bb2410b3b7f27e8274cd04248b68197"
|
| 329 |
+
},
|
| 330 |
+
"dist": {
|
| 331 |
+
"type": "zip",
|
| 332 |
+
"url": "https://api.github.com/repos/mck89/peast/zipball/7c9e487a0bb2410b3b7f27e8274cd04248b68197",
|
| 333 |
+
"reference": "7c9e487a0bb2410b3b7f27e8274cd04248b68197",
|
| 334 |
+
"shasum": ""
|
| 335 |
+
},
|
| 336 |
+
"require": {
|
| 337 |
+
"php": ">=5.4.0"
|
| 338 |
+
},
|
| 339 |
+
"require-dev": {
|
| 340 |
+
"phpunit/phpunit": "^4.0|^5.0"
|
| 341 |
+
},
|
| 342 |
+
"type": "library",
|
| 343 |
+
"extra": {
|
| 344 |
+
"branch-alias": {
|
| 345 |
+
"dev-master": "1.9.2-dev"
|
| 346 |
+
}
|
| 347 |
+
},
|
| 348 |
+
"autoload": {
|
| 349 |
+
"psr-4": {
|
| 350 |
+
"Peast\\": "lib/Peast/",
|
| 351 |
+
"Peast\\test\\": "test/Peast/"
|
| 352 |
+
}
|
| 353 |
+
},
|
| 354 |
+
"notification-url": "https://packagist.org/downloads/",
|
| 355 |
+
"license": [
|
| 356 |
+
"MIT"
|
| 357 |
+
],
|
| 358 |
+
"authors": [
|
| 359 |
+
{
|
| 360 |
+
"name": "Marco Marchiò",
|
| 361 |
+
"email": "marco.mm89@gmail.com"
|
| 362 |
+
}
|
| 363 |
+
],
|
| 364 |
+
"description": "Peast is PHP library that generates AST for JavaScript code",
|
| 365 |
+
"time": "2019-05-24T16:47:14+00:00"
|
| 366 |
+
},
|
| 367 |
+
{
|
| 368 |
+
"name": "mustache/mustache",
|
| 369 |
+
"version": "v2.12.0",
|
| 370 |
+
"source": {
|
| 371 |
+
"type": "git",
|
| 372 |
+
"url": "https://github.com/bobthecow/mustache.php.git",
|
| 373 |
+
"reference": "fe8fe72e9d580591854de404cc59a1b83ca4d19e"
|
| 374 |
+
},
|
| 375 |
+
"dist": {
|
| 376 |
+
"type": "zip",
|
| 377 |
+
"url": "https://api.github.com/repos/bobthecow/mustache.php/zipball/fe8fe72e9d580591854de404cc59a1b83ca4d19e",
|
| 378 |
+
"reference": "fe8fe72e9d580591854de404cc59a1b83ca4d19e",
|
| 379 |
+
"shasum": ""
|
| 380 |
+
},
|
| 381 |
+
"require": {
|
| 382 |
+
"php": ">=5.2.4"
|
| 383 |
+
},
|
| 384 |
+
"require-dev": {
|
| 385 |
+
"friendsofphp/php-cs-fixer": "~1.11",
|
| 386 |
+
"phpunit/phpunit": "~3.7|~4.0|~5.0"
|
| 387 |
+
},
|
| 388 |
+
"type": "library",
|
| 389 |
+
"autoload": {
|
| 390 |
+
"psr-0": {
|
| 391 |
+
"Mustache": "src/"
|
| 392 |
+
}
|
| 393 |
+
},
|
| 394 |
+
"notification-url": "https://packagist.org/downloads/",
|
| 395 |
+
"license": [
|
| 396 |
+
"MIT"
|
| 397 |
+
],
|
| 398 |
+
"authors": [
|
| 399 |
+
{
|
| 400 |
+
"name": "Justin Hileman",
|
| 401 |
+
"email": "justin@justinhileman.info",
|
| 402 |
+
"homepage": "http://justinhileman.com"
|
| 403 |
+
}
|
| 404 |
+
],
|
| 405 |
+
"description": "A Mustache implementation in PHP.",
|
| 406 |
+
"homepage": "https://github.com/bobthecow/mustache.php",
|
| 407 |
+
"keywords": [
|
| 408 |
+
"mustache",
|
| 409 |
+
"templating"
|
| 410 |
+
],
|
| 411 |
+
"time": "2017-07-11T12:54:05+00:00"
|
| 412 |
+
},
|
| 413 |
{
|
| 414 |
"name": "phpcompatibility/php-compatibility",
|
| 415 |
+
"version": "9.2.0",
|
| 416 |
"source": {
|
| 417 |
"type": "git",
|
| 418 |
"url": "https://github.com/PHPCompatibility/PHPCompatibility.git",
|
| 419 |
+
"reference": "3db1bf1e28123fd574a4ae2e9a84072826d51b5e"
|
| 420 |
},
|
| 421 |
"dist": {
|
| 422 |
"type": "zip",
|
| 423 |
+
"url": "https://api.github.com/repos/PHPCompatibility/PHPCompatibility/zipball/3db1bf1e28123fd574a4ae2e9a84072826d51b5e",
|
| 424 |
+
"reference": "3db1bf1e28123fd574a4ae2e9a84072826d51b5e",
|
| 425 |
"shasum": ""
|
| 426 |
},
|
| 427 |
"require": {
|
| 435 |
"phpunit/phpunit": "~4.5 || ^5.0 || ^6.0 || ^7.0"
|
| 436 |
},
|
| 437 |
"suggest": {
|
| 438 |
+
"dealerdirect/phpcodesniffer-composer-installer": "^0.5 || This Composer plugin will sort out the PHPCS 'installed_paths' automatically.",
|
| 439 |
"roave/security-advisories": "dev-master || Helps prevent installing dependencies with known security issues."
|
| 440 |
},
|
| 441 |
"type": "phpcodesniffer-standard",
|
| 450 |
},
|
| 451 |
{
|
| 452 |
"name": "Wim Godden",
|
| 453 |
+
"role": "lead",
|
| 454 |
+
"homepage": "https://github.com/wimg"
|
| 455 |
},
|
| 456 |
{
|
| 457 |
"name": "Juliette Reinders Folmer",
|
| 458 |
+
"role": "lead",
|
| 459 |
+
"homepage": "https://github.com/jrfnl"
|
| 460 |
}
|
| 461 |
],
|
| 462 |
"description": "A set of sniffs for PHP_CodeSniffer that checks for PHP cross-version compatibility.",
|
| 466 |
"phpcs",
|
| 467 |
"standards"
|
| 468 |
],
|
| 469 |
+
"time": "2019-06-27T19:58:56+00:00"
|
| 470 |
},
|
| 471 |
{
|
| 472 |
"name": "phpcompatibility/phpcompatibility-paragonie",
|
| 568 |
],
|
| 569 |
"time": "2018-10-07T18:31:37+00:00"
|
| 570 |
},
|
| 571 |
+
{
|
| 572 |
+
"name": "rmccue/requests",
|
| 573 |
+
"version": "v1.7.0",
|
| 574 |
+
"source": {
|
| 575 |
+
"type": "git",
|
| 576 |
+
"url": "https://github.com/rmccue/Requests.git",
|
| 577 |
+
"reference": "87932f52ffad70504d93f04f15690cf16a089546"
|
| 578 |
+
},
|
| 579 |
+
"dist": {
|
| 580 |
+
"type": "zip",
|
| 581 |
+
"url": "https://api.github.com/repos/rmccue/Requests/zipball/87932f52ffad70504d93f04f15690cf16a089546",
|
| 582 |
+
"reference": "87932f52ffad70504d93f04f15690cf16a089546",
|
| 583 |
+
"shasum": ""
|
| 584 |
+
},
|
| 585 |
+
"require": {
|
| 586 |
+
"php": ">=5.2"
|
| 587 |
+
},
|
| 588 |
+
"require-dev": {
|
| 589 |
+
"requests/test-server": "dev-master"
|
| 590 |
+
},
|
| 591 |
+
"type": "library",
|
| 592 |
+
"autoload": {
|
| 593 |
+
"psr-0": {
|
| 594 |
+
"Requests": "library/"
|
| 595 |
+
}
|
| 596 |
+
},
|
| 597 |
+
"notification-url": "https://packagist.org/downloads/",
|
| 598 |
+
"license": [
|
| 599 |
+
"ISC"
|
| 600 |
+
],
|
| 601 |
+
"authors": [
|
| 602 |
+
{
|
| 603 |
+
"name": "Ryan McCue",
|
| 604 |
+
"homepage": "http://ryanmccue.info"
|
| 605 |
+
}
|
| 606 |
+
],
|
| 607 |
+
"description": "A HTTP library written in PHP, for human beings.",
|
| 608 |
+
"homepage": "http://github.com/rmccue/Requests",
|
| 609 |
+
"keywords": [
|
| 610 |
+
"curl",
|
| 611 |
+
"fsockopen",
|
| 612 |
+
"http",
|
| 613 |
+
"idna",
|
| 614 |
+
"ipv6",
|
| 615 |
+
"iri",
|
| 616 |
+
"sockets"
|
| 617 |
+
],
|
| 618 |
+
"time": "2016-10-13T00:11:37+00:00"
|
| 619 |
+
},
|
| 620 |
{
|
| 621 |
"name": "squizlabs/php_codesniffer",
|
| 622 |
"version": "3.4.2",
|
| 668 |
],
|
| 669 |
"time": "2019-04-10T23:49:02+00:00"
|
| 670 |
},
|
| 671 |
+
{
|
| 672 |
+
"name": "symfony/finder",
|
| 673 |
+
"version": "v4.3.3",
|
| 674 |
+
"source": {
|
| 675 |
+
"type": "git",
|
| 676 |
+
"url": "https://github.com/symfony/finder.git",
|
| 677 |
+
"reference": "9638d41e3729459860bb96f6247ccb61faaa45f2"
|
| 678 |
+
},
|
| 679 |
+
"dist": {
|
| 680 |
+
"type": "zip",
|
| 681 |
+
"url": "https://api.github.com/repos/symfony/finder/zipball/9638d41e3729459860bb96f6247ccb61faaa45f2",
|
| 682 |
+
"reference": "9638d41e3729459860bb96f6247ccb61faaa45f2",
|
| 683 |
+
"shasum": ""
|
| 684 |
+
},
|
| 685 |
+
"require": {
|
| 686 |
+
"php": "^7.1.3"
|
| 687 |
+
},
|
| 688 |
+
"type": "library",
|
| 689 |
+
"extra": {
|
| 690 |
+
"branch-alias": {
|
| 691 |
+
"dev-master": "4.3-dev"
|
| 692 |
+
}
|
| 693 |
+
},
|
| 694 |
+
"autoload": {
|
| 695 |
+
"psr-4": {
|
| 696 |
+
"Symfony\\Component\\Finder\\": ""
|
| 697 |
+
},
|
| 698 |
+
"exclude-from-classmap": [
|
| 699 |
+
"/Tests/"
|
| 700 |
+
]
|
| 701 |
+
},
|
| 702 |
+
"notification-url": "https://packagist.org/downloads/",
|
| 703 |
+
"license": [
|
| 704 |
+
"MIT"
|
| 705 |
+
],
|
| 706 |
+
"authors": [
|
| 707 |
+
{
|
| 708 |
+
"name": "Fabien Potencier",
|
| 709 |
+
"email": "fabien@symfony.com"
|
| 710 |
+
},
|
| 711 |
+
{
|
| 712 |
+
"name": "Symfony Community",
|
| 713 |
+
"homepage": "https://symfony.com/contributors"
|
| 714 |
+
}
|
| 715 |
+
],
|
| 716 |
+
"description": "Symfony Finder Component",
|
| 717 |
+
"homepage": "https://symfony.com",
|
| 718 |
+
"time": "2019-06-28T13:16:30+00:00"
|
| 719 |
+
},
|
| 720 |
+
{
|
| 721 |
+
"name": "wp-cli/i18n-command",
|
| 722 |
+
"version": "v2.2.0",
|
| 723 |
+
"source": {
|
| 724 |
+
"type": "git",
|
| 725 |
+
"url": "https://github.com/wp-cli/i18n-command.git",
|
| 726 |
+
"reference": "379d2b07e8555efb2a6ccd94ef3d75414aa03a88"
|
| 727 |
+
},
|
| 728 |
+
"dist": {
|
| 729 |
+
"type": "zip",
|
| 730 |
+
"url": "https://api.github.com/repos/wp-cli/i18n-command/zipball/379d2b07e8555efb2a6ccd94ef3d75414aa03a88",
|
| 731 |
+
"reference": "379d2b07e8555efb2a6ccd94ef3d75414aa03a88",
|
| 732 |
+
"shasum": ""
|
| 733 |
+
},
|
| 734 |
+
"require": {
|
| 735 |
+
"gettext/gettext": "^4.6.3",
|
| 736 |
+
"mck89/peast": "^1.8",
|
| 737 |
+
"wp-cli/wp-cli": "^2"
|
| 738 |
+
},
|
| 739 |
+
"require-dev": {
|
| 740 |
+
"wp-cli/scaffold-command": "^1.2 || ^2",
|
| 741 |
+
"wp-cli/wp-cli-tests": "^2.1.3"
|
| 742 |
+
},
|
| 743 |
+
"type": "wp-cli-package",
|
| 744 |
+
"extra": {
|
| 745 |
+
"branch-alias": {
|
| 746 |
+
"dev-master": "2.x-dev"
|
| 747 |
+
},
|
| 748 |
+
"bundled": true,
|
| 749 |
+
"commands": [
|
| 750 |
+
"i18n",
|
| 751 |
+
"i18n make-pot",
|
| 752 |
+
"i18n make-json"
|
| 753 |
+
]
|
| 754 |
+
},
|
| 755 |
+
"autoload": {
|
| 756 |
+
"psr-4": {
|
| 757 |
+
"WP_CLI\\I18n\\": "src/"
|
| 758 |
+
},
|
| 759 |
+
"files": [
|
| 760 |
+
"i18n-command.php"
|
| 761 |
+
]
|
| 762 |
+
},
|
| 763 |
+
"notification-url": "https://packagist.org/downloads/",
|
| 764 |
+
"license": [
|
| 765 |
+
"MIT"
|
| 766 |
+
],
|
| 767 |
+
"authors": [
|
| 768 |
+
{
|
| 769 |
+
"name": "Pascal Birchler",
|
| 770 |
+
"homepage": "https://pascalbirchler.com/"
|
| 771 |
+
}
|
| 772 |
+
],
|
| 773 |
+
"description": "Provides internationalization tools for WordPress projects.",
|
| 774 |
+
"homepage": "https://github.com/wp-cli/i18n-command",
|
| 775 |
+
"time": "2019-08-13T16:32:54+00:00"
|
| 776 |
+
},
|
| 777 |
+
{
|
| 778 |
+
"name": "wp-cli/mustangostang-spyc",
|
| 779 |
+
"version": "0.6.3",
|
| 780 |
+
"source": {
|
| 781 |
+
"type": "git",
|
| 782 |
+
"url": "https://github.com/wp-cli/spyc.git",
|
| 783 |
+
"reference": "6aa0b4da69ce9e9a2c8402dab8d43cf32c581cc7"
|
| 784 |
+
},
|
| 785 |
+
"dist": {
|
| 786 |
+
"type": "zip",
|
| 787 |
+
"url": "https://api.github.com/repos/wp-cli/spyc/zipball/6aa0b4da69ce9e9a2c8402dab8d43cf32c581cc7",
|
| 788 |
+
"reference": "6aa0b4da69ce9e9a2c8402dab8d43cf32c581cc7",
|
| 789 |
+
"shasum": ""
|
| 790 |
+
},
|
| 791 |
+
"require": {
|
| 792 |
+
"php": ">=5.3.1"
|
| 793 |
+
},
|
| 794 |
+
"require-dev": {
|
| 795 |
+
"phpunit/phpunit": "4.3.*@dev"
|
| 796 |
+
},
|
| 797 |
+
"type": "library",
|
| 798 |
+
"extra": {
|
| 799 |
+
"branch-alias": {
|
| 800 |
+
"dev-master": "0.5.x-dev"
|
| 801 |
+
}
|
| 802 |
+
},
|
| 803 |
+
"autoload": {
|
| 804 |
+
"psr-4": {
|
| 805 |
+
"Mustangostang\\": "src/"
|
| 806 |
+
},
|
| 807 |
+
"files": [
|
| 808 |
+
"includes/functions.php"
|
| 809 |
+
]
|
| 810 |
+
},
|
| 811 |
+
"notification-url": "https://packagist.org/downloads/",
|
| 812 |
+
"license": [
|
| 813 |
+
"MIT"
|
| 814 |
+
],
|
| 815 |
+
"authors": [
|
| 816 |
+
{
|
| 817 |
+
"name": "mustangostang",
|
| 818 |
+
"email": "vlad.andersen@gmail.com"
|
| 819 |
+
}
|
| 820 |
+
],
|
| 821 |
+
"description": "A simple YAML loader/dumper class for PHP (WP-CLI fork)",
|
| 822 |
+
"homepage": "https://github.com/mustangostang/spyc/",
|
| 823 |
+
"time": "2017-04-25T11:26:20+00:00"
|
| 824 |
+
},
|
| 825 |
+
{
|
| 826 |
+
"name": "wp-cli/php-cli-tools",
|
| 827 |
+
"version": "v0.11.11",
|
| 828 |
+
"source": {
|
| 829 |
+
"type": "git",
|
| 830 |
+
"url": "https://github.com/wp-cli/php-cli-tools.git",
|
| 831 |
+
"reference": "fe9c7c44a9e1bf2196ec51dc38da0593dbf2993f"
|
| 832 |
+
},
|
| 833 |
+
"dist": {
|
| 834 |
+
"type": "zip",
|
| 835 |
+
"url": "https://api.github.com/repos/wp-cli/php-cli-tools/zipball/fe9c7c44a9e1bf2196ec51dc38da0593dbf2993f",
|
| 836 |
+
"reference": "fe9c7c44a9e1bf2196ec51dc38da0593dbf2993f",
|
| 837 |
+
"shasum": ""
|
| 838 |
+
},
|
| 839 |
+
"require": {
|
| 840 |
+
"php": ">= 5.3.0"
|
| 841 |
+
},
|
| 842 |
+
"type": "library",
|
| 843 |
+
"autoload": {
|
| 844 |
+
"psr-0": {
|
| 845 |
+
"cli": "lib/"
|
| 846 |
+
},
|
| 847 |
+
"files": [
|
| 848 |
+
"lib/cli/cli.php"
|
| 849 |
+
]
|
| 850 |
+
},
|
| 851 |
+
"notification-url": "https://packagist.org/downloads/",
|
| 852 |
+
"license": [
|
| 853 |
+
"MIT"
|
| 854 |
+
],
|
| 855 |
+
"authors": [
|
| 856 |
+
{
|
| 857 |
+
"name": "James Logsdon",
|
| 858 |
+
"role": "Developer",
|
| 859 |
+
"email": "jlogsdon@php.net"
|
| 860 |
+
},
|
| 861 |
+
{
|
| 862 |
+
"name": "Daniel Bachhuber",
|
| 863 |
+
"role": "Maintainer",
|
| 864 |
+
"email": "daniel@handbuilt.co"
|
| 865 |
+
}
|
| 866 |
+
],
|
| 867 |
+
"description": "Console utilities for PHP",
|
| 868 |
+
"homepage": "http://github.com/wp-cli/php-cli-tools",
|
| 869 |
+
"keywords": [
|
| 870 |
+
"cli",
|
| 871 |
+
"console"
|
| 872 |
+
],
|
| 873 |
+
"time": "2018-09-04T13:28:00+00:00"
|
| 874 |
+
},
|
| 875 |
+
{
|
| 876 |
+
"name": "wp-cli/wp-cli",
|
| 877 |
+
"version": "v2.3.0",
|
| 878 |
+
"source": {
|
| 879 |
+
"type": "git",
|
| 880 |
+
"url": "https://github.com/wp-cli/wp-cli.git",
|
| 881 |
+
"reference": "538d9be5ad490bd07b946dcd3b52b4d1c34dc193"
|
| 882 |
+
},
|
| 883 |
+
"dist": {
|
| 884 |
+
"type": "zip",
|
| 885 |
+
"url": "https://api.github.com/repos/wp-cli/wp-cli/zipball/538d9be5ad490bd07b946dcd3b52b4d1c34dc193",
|
| 886 |
+
"reference": "538d9be5ad490bd07b946dcd3b52b4d1c34dc193",
|
| 887 |
+
"shasum": ""
|
| 888 |
+
},
|
| 889 |
+
"require": {
|
| 890 |
+
"ext-curl": "*",
|
| 891 |
+
"mustache/mustache": "~2.4",
|
| 892 |
+
"php": "^5.4 || ^7.0",
|
| 893 |
+
"rmccue/requests": "~1.6",
|
| 894 |
+
"symfony/finder": ">2.7",
|
| 895 |
+
"wp-cli/mustangostang-spyc": "^0.6.3",
|
| 896 |
+
"wp-cli/php-cli-tools": "~0.11.2"
|
| 897 |
+
},
|
| 898 |
+
"require-dev": {
|
| 899 |
+
"roave/security-advisories": "dev-master",
|
| 900 |
+
"wp-cli/db-command": "^1.3 || ^2",
|
| 901 |
+
"wp-cli/entity-command": "^1.2 || ^2",
|
| 902 |
+
"wp-cli/extension-command": "^1.1 || ^2",
|
| 903 |
+
"wp-cli/package-command": "^1 || ^2",
|
| 904 |
+
"wp-cli/wp-cli-tests": "^2.1"
|
| 905 |
+
},
|
| 906 |
+
"suggest": {
|
| 907 |
+
"ext-readline": "Include for a better --prompt implementation",
|
| 908 |
+
"ext-zip": "Needed to support extraction of ZIP archives when doing downloads or updates"
|
| 909 |
+
},
|
| 910 |
+
"bin": [
|
| 911 |
+
"bin/wp",
|
| 912 |
+
"bin/wp.bat"
|
| 913 |
+
],
|
| 914 |
+
"type": "library",
|
| 915 |
+
"extra": {
|
| 916 |
+
"branch-alias": {
|
| 917 |
+
"dev-master": "2.3.x-dev"
|
| 918 |
+
}
|
| 919 |
+
},
|
| 920 |
+
"autoload": {
|
| 921 |
+
"psr-0": {
|
| 922 |
+
"WP_CLI": "php"
|
| 923 |
+
}
|
| 924 |
+
},
|
| 925 |
+
"notification-url": "https://packagist.org/downloads/",
|
| 926 |
+
"license": [
|
| 927 |
+
"MIT"
|
| 928 |
+
],
|
| 929 |
+
"description": "WP-CLI framework",
|
| 930 |
+
"homepage": "https://wp-cli.org",
|
| 931 |
+
"keywords": [
|
| 932 |
+
"cli",
|
| 933 |
+
"wordpress"
|
| 934 |
+
],
|
| 935 |
+
"time": "2019-08-13T23:12:27+00:00"
|
| 936 |
+
},
|
| 937 |
{
|
| 938 |
"name": "wp-coding-standards/wpcs",
|
| 939 |
"version": "1.2.1",
|
| 940 |
"source": {
|
| 941 |
"type": "git",
|
| 942 |
+
"url": "https://github.com/WordPress/WordPress-Coding-Standards.git",
|
| 943 |
"reference": "f328bcafd97377e8e5e5d7b244d5ddbf301a3a5c"
|
| 944 |
},
|
| 945 |
"dist": {
|
| 946 |
"type": "zip",
|
| 947 |
+
"url": "https://api.github.com/repos/WordPress/WordPress-Coding-Standards/zipball/f328bcafd97377e8e5e5d7b244d5ddbf301a3a5c",
|
| 948 |
"reference": "f328bcafd97377e8e5e5d7b244d5ddbf301a3a5c",
|
| 949 |
"shasum": ""
|
| 950 |
},
|
| 984 |
"prefer-stable": true,
|
| 985 |
"prefer-lowest": false,
|
| 986 |
"platform": {
|
| 987 |
+
"php": "^5.6 || ^7"
|
| 988 |
},
|
| 989 |
"platform-dev": {
|
| 990 |
"php": "^5.6 || ^7"
|
genesis-simple-edits.php
CHANGED
|
@@ -7,7 +7,7 @@
|
|
| 7 |
|
| 8 |
define( 'GENESIS_SIMPLE_EDITS_DIR', plugin_dir_path( __FILE__ ) );
|
| 9 |
define( 'GENESIS_SIMPLE_EDITS_URL', plugins_url( '', __FILE__ ) );
|
| 10 |
-
define( 'GENESIS_SIMPLE_EDITS_VERSION', '
|
| 11 |
|
| 12 |
require_once GENESIS_SIMPLE_EDITS_DIR . '/includes/class-genesis-simple-edits.php';
|
| 13 |
|
| 7 |
|
| 8 |
define( 'GENESIS_SIMPLE_EDITS_DIR', plugin_dir_path( __FILE__ ) );
|
| 9 |
define( 'GENESIS_SIMPLE_EDITS_URL', plugins_url( '', __FILE__ ) );
|
| 10 |
+
define( 'GENESIS_SIMPLE_EDITS_VERSION', '2.3.0' );
|
| 11 |
|
| 12 |
require_once GENESIS_SIMPLE_EDITS_DIR . '/includes/class-genesis-simple-edits.php';
|
| 13 |
|
includes/class-genesis-simple-edits-admin.php
CHANGED
|
@@ -73,16 +73,11 @@ class Genesis_Simple_Edits_Admin extends Genesis_Admin_Form {
|
|
| 73 |
*/
|
| 74 |
public function get_default_settings() {
|
| 75 |
|
| 76 |
-
$footer_html5 = sprintf( '<p>[footer_copyright before="%s "] · [footer_childtheme_link before="" after=" %s"] [footer_genesis_link url="http://www.studiopress.com/" before=""] · [footer_wordpress_link] · [footer_loginout]</p>', __( 'Copyright', 'genesis-simple-edits' ), __( 'On', 'genesis-simple-edits' ) );
|
| 77 |
-
$footer_xhtml = '<div class="gototop"><p>[footer_backtotop]</p></div><div class="creds"><p>' . __( 'Copyright', 'genesis-simple-edits' ) . ' [footer_copyright] [footer_childtheme_link] · [footer_genesis_link] [footer_studiopress_link] · [footer_wordpress_link] · [footer_loginout]</p></div>';
|
| 78 |
-
|
| 79 |
return array(
|
| 80 |
-
'post_info'
|
| 81 |
-
'post_meta'
|
| 82 |
-
'
|
| 83 |
-
'
|
| 84 |
-
'footer_output_on' => 0,
|
| 85 |
-
'footer_output' => current_theme_supports( 'html5' ) ? $footer_html5 : $footer_xhtml,
|
| 86 |
);
|
| 87 |
|
| 88 |
}
|
| 73 |
*/
|
| 74 |
public function get_default_settings() {
|
| 75 |
|
|
|
|
|
|
|
|
|
|
| 76 |
return array(
|
| 77 |
+
'post_info' => '[post_date] ' . __( 'By', 'genesis-simple-edits' ) . ' [post_author_posts_link] [post_comments] [post_edit]',
|
| 78 |
+
'post_meta' => '[post_categories] [post_tags]',
|
| 79 |
+
'footer_output_on' => 0,
|
| 80 |
+
'footer_output' => sprintf( '<p>[footer_copyright before="%s "] · [footer_childtheme_link before="" after=" %s"] [footer_genesis_link url="http://www.studiopress.com/" before=""] · [footer_wordpress_link] · [footer_loginout]</p>', __( 'Copyright', 'genesis-simple-edits' ), __( 'On', 'genesis-simple-edits' ) ),
|
|
|
|
|
|
|
| 81 |
);
|
| 82 |
|
| 83 |
}
|
includes/class-genesis-simple-edits-core.php
CHANGED
|
@@ -34,8 +34,6 @@ class Genesis_Simple_Edits_Core {
|
|
| 34 |
|
| 35 |
add_filter( 'genesis_post_info', array( $this, 'post_info_filter' ), 19 );
|
| 36 |
add_filter( 'genesis_post_meta', array( $this, 'post_meta_filter' ), 19 );
|
| 37 |
-
add_filter( 'genesis_footer_backtotop_text', array( $this, 'footer_backtotop_filter' ), 19 );
|
| 38 |
-
add_filter( 'genesis_footer_creds_text', array( $this, 'footer_creds_filter' ), 19 );
|
| 39 |
add_filter( 'genesis_footer_output', array( $this, 'footer_output_filter' ), 19 );
|
| 40 |
|
| 41 |
}
|
|
@@ -62,28 +60,6 @@ class Genesis_Simple_Edits_Core {
|
|
| 62 |
|
| 63 |
}
|
| 64 |
|
| 65 |
-
/**
|
| 66 |
-
* Footer Back To Top Filter
|
| 67 |
-
*
|
| 68 |
-
* @param Output $output Output.
|
| 69 |
-
*/
|
| 70 |
-
public function footer_backtotop_filter( $output ) {
|
| 71 |
-
|
| 72 |
-
return genesis_get_option( 'footer_backtotop_text', $this->settings_field );
|
| 73 |
-
|
| 74 |
-
}
|
| 75 |
-
|
| 76 |
-
/**
|
| 77 |
-
* Footer Creds Filter
|
| 78 |
-
*
|
| 79 |
-
* @param Output $output Output.
|
| 80 |
-
*/
|
| 81 |
-
public function footer_creds_filter( $output ) {
|
| 82 |
-
|
| 83 |
-
return genesis_get_option( 'footer_creds_text', $this->settings_field );
|
| 84 |
-
|
| 85 |
-
}
|
| 86 |
-
|
| 87 |
/**
|
| 88 |
* Footer Output Filter
|
| 89 |
*
|
| 34 |
|
| 35 |
add_filter( 'genesis_post_info', array( $this, 'post_info_filter' ), 19 );
|
| 36 |
add_filter( 'genesis_post_meta', array( $this, 'post_meta_filter' ), 19 );
|
|
|
|
|
|
|
| 37 |
add_filter( 'genesis_footer_output', array( $this, 'footer_output_filter' ), 19 );
|
| 38 |
|
| 39 |
}
|
| 60 |
|
| 61 |
}
|
| 62 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 63 |
/**
|
| 64 |
* Footer Output Filter
|
| 65 |
*
|
includes/class-genesis-simple-edits.php
CHANGED
|
@@ -18,14 +18,14 @@ class Genesis_Simple_Edits {
|
|
| 18 |
*
|
| 19 |
* @var $min_wp_version Minimum WordPress version
|
| 20 |
*/
|
| 21 |
-
public $min_wp_version = '
|
| 22 |
|
| 23 |
/**
|
| 24 |
* Minimum Genesis version.
|
| 25 |
*
|
| 26 |
* @var $min_genesis_version Minimum Genesis version
|
| 27 |
*/
|
| 28 |
-
public $min_genesis_version = '
|
| 29 |
|
| 30 |
/**
|
| 31 |
* The plugin textdomain, for translations.
|
|
@@ -111,7 +111,17 @@ class Genesis_Simple_Edits {
|
|
| 111 |
|
| 112 |
// Translators: String 1 is the version of WordPress required, String 2 is the version of Genesis required. String 3 is an expected action to take, String 4 is the URL of the Genesis Plugin.
|
| 113 |
$message = sprintf( __( 'Genesis Simple Edits requires WordPress %1$s and Genesis %2$s, or greater. Please %3$s the latest version of <a href="%4$s" target="_blank">Genesis</a> to use this plugin.', 'genesis-simple-edits' ), $this->min_wp_version, $this->min_genesis_version, $action, 'http://my.studiopress.com/?download_id=91046d629e74d525b3f2978e404e7ffa' );
|
| 114 |
-
echo '<div class="notice notice-warning"><p>'
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 115 |
|
| 116 |
}
|
| 117 |
|
| 18 |
*
|
| 19 |
* @var $min_wp_version Minimum WordPress version
|
| 20 |
*/
|
| 21 |
+
public $min_wp_version = '5.0.0';
|
| 22 |
|
| 23 |
/**
|
| 24 |
* Minimum Genesis version.
|
| 25 |
*
|
| 26 |
* @var $min_genesis_version Minimum Genesis version
|
| 27 |
*/
|
| 28 |
+
public $min_genesis_version = '3.1.0';
|
| 29 |
|
| 30 |
/**
|
| 31 |
* The plugin textdomain, for translations.
|
| 111 |
|
| 112 |
// Translators: String 1 is the version of WordPress required, String 2 is the version of Genesis required. String 3 is an expected action to take, String 4 is the URL of the Genesis Plugin.
|
| 113 |
$message = sprintf( __( 'Genesis Simple Edits requires WordPress %1$s and Genesis %2$s, or greater. Please %3$s the latest version of <a href="%4$s" target="_blank">Genesis</a> to use this plugin.', 'genesis-simple-edits' ), $this->min_wp_version, $this->min_genesis_version, $action, 'http://my.studiopress.com/?download_id=91046d629e74d525b3f2978e404e7ffa' );
|
| 114 |
+
echo '<div class="notice notice-warning"><p>';
|
| 115 |
+
echo wp_kses(
|
| 116 |
+
$message,
|
| 117 |
+
array(
|
| 118 |
+
'a' => array(
|
| 119 |
+
'href' => array(),
|
| 120 |
+
'target' => array(),
|
| 121 |
+
),
|
| 122 |
+
)
|
| 123 |
+
);
|
| 124 |
+
echo '</p></div>';
|
| 125 |
|
| 126 |
}
|
| 127 |
|
includes/views/admin.php
CHANGED
|
@@ -57,22 +57,6 @@
|
|
| 57 |
</td>
|
| 58 |
</tr>
|
| 59 |
|
| 60 |
-
<?php if ( ! genesis_html5() ) : ?>
|
| 61 |
-
<tr>
|
| 62 |
-
<th scope="row"><p><label for="<?php $this->field_id( 'footer_backtotop_text' ); ?>"><b><?php esc_html_e( 'Footer "Back to Top" Link', 'genesis-simple-edits' ); ?></b></label></p></th>
|
| 63 |
-
<td>
|
| 64 |
-
<p><input type="text" name="<?php $this->field_name( 'footer_backtotop_text' ); ?>" id="<?php $this->field_id( 'footer_backtotop_text' ); ?>" value="<?php echo esc_attr( $this->get_field_value( 'footer_backtotop_text' ) ); ?>" size="125" /></p>
|
| 65 |
-
</td>
|
| 66 |
-
</tr>
|
| 67 |
-
<?php endif; ?>
|
| 68 |
-
|
| 69 |
-
<tr>
|
| 70 |
-
<th scope="row"><p><label for="<?php $this->field_id( 'footer_creds_text' ); ?>"><b><?php esc_html_e( 'Footer Credits Text', 'genesis-simple-edits' ); ?></b></label></p></th>
|
| 71 |
-
<td>
|
| 72 |
-
<p><input type="text" name="<?php $this->field_name( 'footer_creds_text' ); ?>" id="<?php $this->field_name( 'footer_creds_text' ); ?>" value="<?php echo esc_attr( $this->get_field_value( 'footer_creds_text' ) ); ?>" size="125" /></p>
|
| 73 |
-
</td>
|
| 74 |
-
</tr>
|
| 75 |
-
|
| 76 |
<tr>
|
| 77 |
<th scope="row"><p><b><?php esc_html_e( 'Footer Output', 'genesis-simple-edits' ); ?></b></p></th>
|
| 78 |
<td>
|
|
@@ -102,9 +86,6 @@
|
|
| 102 |
<?php printf( wp_kses( __( 'NOTE: For a more comprehensive shortcode usage guide, see the <a href="%s" target="_blank">footer shortcode reference</a>.', 'genesis-simple-edits' ), $allowed_html ), 'http://my.studiopress.com/documentation/customization/shortcodes-reference/footer-shortcode-reference/' ); ?></span></p>
|
| 103 |
<p>
|
| 104 |
<ul>
|
| 105 |
-
<?php if ( ! genesis_html5() ) : ?>
|
| 106 |
-
<li>[footer_backtotop] - <span class="description"><?php esc_html_e( 'The "Back to Top" Link', 'genesis-simple-edits' ); ?></span></li>
|
| 107 |
-
<?php endif; ?>
|
| 108 |
<li>[footer_copyright] - <span class="description"><?php esc_html_e( 'The Copyright notice', 'genesis-simple-edits' ); ?></span></li>
|
| 109 |
<li>[footer_childtheme_link] - <span class="description"><?php esc_html_e( 'The Child Theme Link', 'genesis-simple-edits' ); ?></span></li>
|
| 110 |
<li>[footer_genesis_link] - <span class="description"><?php esc_html_e( 'The Genesis Link', 'genesis-simple-edits' ); ?></span></li>
|
| 57 |
</td>
|
| 58 |
</tr>
|
| 59 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 60 |
<tr>
|
| 61 |
<th scope="row"><p><b><?php esc_html_e( 'Footer Output', 'genesis-simple-edits' ); ?></b></p></th>
|
| 62 |
<td>
|
| 86 |
<?php printf( wp_kses( __( 'NOTE: For a more comprehensive shortcode usage guide, see the <a href="%s" target="_blank">footer shortcode reference</a>.', 'genesis-simple-edits' ), $allowed_html ), 'http://my.studiopress.com/documentation/customization/shortcodes-reference/footer-shortcode-reference/' ); ?></span></p>
|
| 87 |
<p>
|
| 88 |
<ul>
|
|
|
|
|
|
|
|
|
|
| 89 |
<li>[footer_copyright] - <span class="description"><?php esc_html_e( 'The Copyright notice', 'genesis-simple-edits' ); ?></span></li>
|
| 90 |
<li>[footer_childtheme_link] - <span class="description"><?php esc_html_e( 'The Child Theme Link', 'genesis-simple-edits' ); ?></span></li>
|
| 91 |
<li>[footer_genesis_link] - <span class="description"><?php esc_html_e( 'The Genesis Link', 'genesis-simple-edits' ); ?></span></li>
|
languages/genesis-simple-edits.pot
CHANGED
|
@@ -1,28 +1,38 @@
|
|
| 1 |
# Copyright (C) 2019 StudioPress
|
| 2 |
-
# This file is distributed under the
|
| 3 |
msgid ""
|
| 4 |
msgstr ""
|
| 5 |
-
"Project-Id-Version: Genesis Simple Edits 2.
|
| 6 |
"Report-Msgid-Bugs-To: StudioPress <translations@studiopress.com>\n"
|
| 7 |
-
"
|
|
|
|
| 8 |
"MIME-Version: 1.0\n"
|
| 9 |
-
"Content-Type: text/plain; charset=
|
| 10 |
"Content-Transfer-Encoding: 8bit\n"
|
| 11 |
-
"
|
| 12 |
-
"
|
| 13 |
-
"
|
| 14 |
-
"X-
|
| 15 |
-
|
| 16 |
-
|
| 17 |
-
"
|
| 18 |
-
|
| 19 |
-
|
| 20 |
-
|
| 21 |
-
"
|
| 22 |
-
"
|
| 23 |
-
|
| 24 |
-
|
| 25 |
-
"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 26 |
|
| 27 |
#: includes/class-genesis-simple-edits-admin.php:57
|
| 28 |
msgid "Genesis - Simple Edits"
|
|
@@ -32,19 +42,16 @@ msgstr ""
|
|
| 32 |
msgid "Simple Edits"
|
| 33 |
msgstr ""
|
| 34 |
|
| 35 |
-
#: includes/class-genesis-simple-edits-admin.php:76
|
| 36 |
#: includes/class-genesis-simple-edits-admin.php:77
|
| 37 |
-
|
| 38 |
-
msgid "Copyright"
|
| 39 |
msgstr ""
|
| 40 |
|
| 41 |
-
#: includes/class-genesis-simple-edits-admin.php:
|
| 42 |
-
|
| 43 |
-
msgid "On"
|
| 44 |
msgstr ""
|
| 45 |
|
| 46 |
#: includes/class-genesis-simple-edits-admin.php:80
|
| 47 |
-
msgid "
|
| 48 |
msgstr ""
|
| 49 |
|
| 50 |
#: includes/class-genesis-simple-edits.php:110
|
|
@@ -55,14 +62,9 @@ msgstr ""
|
|
| 55 |
msgid "install and activate"
|
| 56 |
msgstr ""
|
| 57 |
|
|
|
|
| 58 |
#: includes/class-genesis-simple-edits.php:113
|
| 59 |
-
|
| 60 |
-
#. version of Genesis required. String 3 is an expected action to take, String
|
| 61 |
-
#. 4 is the URL of the Genesis Plugin.
|
| 62 |
-
msgid ""
|
| 63 |
-
"Genesis Simple Edits requires WordPress %1$s and Genesis %2$s, or greater. "
|
| 64 |
-
"Please %3$s the latest version of <a href=\"%4$s\" "
|
| 65 |
-
"target=\"_blank\">Genesis</a> to use this plugin."
|
| 66 |
msgstr ""
|
| 67 |
|
| 68 |
#: includes/views/admin.php:12
|
|
@@ -77,15 +79,14 @@ msgstr ""
|
|
| 77 |
msgid "Show available entry meta shortcodes"
|
| 78 |
msgstr ""
|
| 79 |
|
| 80 |
-
#: includes/views/admin.php:29
|
|
|
|
| 81 |
msgid "Shortcode Reference"
|
| 82 |
msgstr ""
|
| 83 |
|
| 84 |
-
#: includes/views/admin.php:41
|
| 85 |
#. Translators: The string is a URL to a usage guide.
|
| 86 |
-
|
| 87 |
-
"NOTE: For a more comprehensive shortcode usage guide, see the <a "
|
| 88 |
-
"href=\"%s\" target=\"_blank\">post shortcode reference</a>."
|
| 89 |
msgstr ""
|
| 90 |
|
| 91 |
#: includes/views/admin.php:44
|
|
@@ -132,85 +133,47 @@ msgstr ""
|
|
| 132 |
msgid "Entry edit link (visible to admins)"
|
| 133 |
msgstr ""
|
| 134 |
|
| 135 |
-
#: includes/views/admin.php:
|
| 136 |
-
msgid "Footer \"Back to Top\" Link"
|
| 137 |
-
msgstr ""
|
| 138 |
-
|
| 139 |
-
#: includes/views/admin.php:70
|
| 140 |
-
msgid "Footer Credits Text"
|
| 141 |
-
msgstr ""
|
| 142 |
-
|
| 143 |
-
#: includes/views/admin.php:77
|
| 144 |
msgid "Footer Output"
|
| 145 |
msgstr ""
|
| 146 |
|
| 147 |
-
#: includes/views/admin.php:
|
| 148 |
msgid "Modify Entire Footer Text (including markup)?"
|
| 149 |
msgstr ""
|
| 150 |
|
| 151 |
-
#: includes/views/admin.php:
|
| 152 |
-
msgid ""
|
| 153 |
-
"NOTE: Checking this option will use the content of the box below, and "
|
| 154 |
-
"override the options above."
|
| 155 |
msgstr ""
|
| 156 |
|
| 157 |
-
#: includes/views/admin.php:
|
| 158 |
msgid "Show available footer shortcodes"
|
| 159 |
msgstr ""
|
| 160 |
|
| 161 |
-
#: includes/views/admin.php:102
|
| 162 |
#. Translators: The string is a URL to a usage guide.
|
| 163 |
-
|
| 164 |
-
"NOTE: For a more comprehensive shortcode usage guide, see the <a "
|
| 165 |
-
"href=\"%s\" target=\"_blank\">footer shortcode reference</a>."
|
| 166 |
-
msgstr ""
|
| 167 |
-
|
| 168 |
-
#: includes/views/admin.php:106
|
| 169 |
-
msgid "The \"Back to Top\" Link"
|
| 170 |
msgstr ""
|
| 171 |
|
| 172 |
-
#: includes/views/admin.php:
|
| 173 |
msgid "The Copyright notice"
|
| 174 |
msgstr ""
|
| 175 |
|
| 176 |
-
#: includes/views/admin.php:
|
| 177 |
msgid "The Child Theme Link"
|
| 178 |
msgstr ""
|
| 179 |
|
| 180 |
-
#: includes/views/admin.php:
|
| 181 |
msgid "The Genesis Link"
|
| 182 |
msgstr ""
|
| 183 |
|
| 184 |
-
#: includes/views/admin.php:
|
| 185 |
msgid "The StudioPress Link"
|
| 186 |
msgstr ""
|
| 187 |
|
| 188 |
-
#: includes/views/admin.php:
|
| 189 |
msgid "The WordPress Link"
|
| 190 |
msgstr ""
|
| 191 |
|
| 192 |
-
#: includes/views/admin.php:
|
| 193 |
msgid "Log In/Out Link"
|
| 194 |
msgstr ""
|
| 195 |
-
|
| 196 |
-
#. Plugin Name of the plugin/theme
|
| 197 |
-
msgid "Genesis Simple Edits"
|
| 198 |
-
msgstr ""
|
| 199 |
-
|
| 200 |
-
#. Plugin URI of the plugin/theme
|
| 201 |
-
msgid "https://www.studiopress.com/plugins/genesis-simple-edits"
|
| 202 |
-
msgstr ""
|
| 203 |
-
|
| 204 |
-
#. Description of the plugin/theme
|
| 205 |
-
msgid ""
|
| 206 |
-
"Genesis Simple Edits lets you edit the three most commonly modified areas "
|
| 207 |
-
"in any Genesis theme: the post-info, the post-meta, and the footer area."
|
| 208 |
-
msgstr ""
|
| 209 |
-
|
| 210 |
-
#. Author of the plugin/theme
|
| 211 |
-
msgid "StudioPress"
|
| 212 |
-
msgstr ""
|
| 213 |
-
|
| 214 |
-
#. Author URI of the plugin/theme
|
| 215 |
-
msgid "https://www.studiopress.com/"
|
| 216 |
-
msgstr ""
|
| 1 |
# Copyright (C) 2019 StudioPress
|
| 2 |
+
# This file is distributed under the same license as the Genesis Simple Edits plugin.
|
| 3 |
msgid ""
|
| 4 |
msgstr ""
|
| 5 |
+
"Project-Id-Version: Genesis Simple Edits 2.3.0\n"
|
| 6 |
"Report-Msgid-Bugs-To: StudioPress <translations@studiopress.com>\n"
|
| 7 |
+
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
| 8 |
+
"Language-Team: LANGUAGE <LL@li.org>\n"
|
| 9 |
"MIME-Version: 1.0\n"
|
| 10 |
+
"Content-Type: text/plain; charset=UTF-8\n"
|
| 11 |
"Content-Transfer-Encoding: 8bit\n"
|
| 12 |
+
"POT-Creation-Date: 2019-08-20T12:32:48+00:00\n"
|
| 13 |
+
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
| 14 |
+
"X-Generator: WP-CLI 2.3.0\n"
|
| 15 |
+
"X-Domain: genesis-simple-edits\n"
|
| 16 |
+
|
| 17 |
+
#. Plugin Name of the plugin
|
| 18 |
+
msgid "Genesis Simple Edits"
|
| 19 |
+
msgstr ""
|
| 20 |
+
|
| 21 |
+
#. Plugin URI of the plugin
|
| 22 |
+
msgid "https://www.studiopress.com/plugins/genesis-simple-edits"
|
| 23 |
+
msgstr ""
|
| 24 |
+
|
| 25 |
+
#. Description of the plugin
|
| 26 |
+
msgid "Genesis Simple Edits lets you edit the three most commonly modified areas in any Genesis theme: the post-info, the post-meta, and the footer area."
|
| 27 |
+
msgstr ""
|
| 28 |
+
|
| 29 |
+
#. Author of the plugin
|
| 30 |
+
msgid "StudioPress"
|
| 31 |
+
msgstr ""
|
| 32 |
+
|
| 33 |
+
#. Author URI of the plugin
|
| 34 |
+
msgid "https://www.studiopress.com/"
|
| 35 |
+
msgstr ""
|
| 36 |
|
| 37 |
#: includes/class-genesis-simple-edits-admin.php:57
|
| 38 |
msgid "Genesis - Simple Edits"
|
| 42 |
msgid "Simple Edits"
|
| 43 |
msgstr ""
|
| 44 |
|
|
|
|
| 45 |
#: includes/class-genesis-simple-edits-admin.php:77
|
| 46 |
+
msgid "By"
|
|
|
|
| 47 |
msgstr ""
|
| 48 |
|
| 49 |
+
#: includes/class-genesis-simple-edits-admin.php:80
|
| 50 |
+
msgid "Copyright"
|
|
|
|
| 51 |
msgstr ""
|
| 52 |
|
| 53 |
#: includes/class-genesis-simple-edits-admin.php:80
|
| 54 |
+
msgid "On"
|
| 55 |
msgstr ""
|
| 56 |
|
| 57 |
#: includes/class-genesis-simple-edits.php:110
|
| 62 |
msgid "install and activate"
|
| 63 |
msgstr ""
|
| 64 |
|
| 65 |
+
#. Translators: String 1 is the version of WordPress required, String 2 is the version of Genesis required. String 3 is an expected action to take, String 4 is the URL of the Genesis Plugin.
|
| 66 |
#: includes/class-genesis-simple-edits.php:113
|
| 67 |
+
msgid "Genesis Simple Edits requires WordPress %1$s and Genesis %2$s, or greater. Please %3$s the latest version of <a href=\"%4$s\" target=\"_blank\">Genesis</a> to use this plugin."
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 68 |
msgstr ""
|
| 69 |
|
| 70 |
#: includes/views/admin.php:12
|
| 79 |
msgid "Show available entry meta shortcodes"
|
| 80 |
msgstr ""
|
| 81 |
|
| 82 |
+
#: includes/views/admin.php:29
|
| 83 |
+
#: includes/views/admin.php:74
|
| 84 |
msgid "Shortcode Reference"
|
| 85 |
msgstr ""
|
| 86 |
|
|
|
|
| 87 |
#. Translators: The string is a URL to a usage guide.
|
| 88 |
+
#: includes/views/admin.php:41
|
| 89 |
+
msgid "NOTE: For a more comprehensive shortcode usage guide, see the <a href=\"%s\" target=\"_blank\">post shortcode reference</a>."
|
|
|
|
| 90 |
msgstr ""
|
| 91 |
|
| 92 |
#: includes/views/admin.php:44
|
| 133 |
msgid "Entry edit link (visible to admins)"
|
| 134 |
msgstr ""
|
| 135 |
|
| 136 |
+
#: includes/views/admin.php:61
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 137 |
msgid "Footer Output"
|
| 138 |
msgstr ""
|
| 139 |
|
| 140 |
+
#: includes/views/admin.php:63
|
| 141 |
msgid "Modify Entire Footer Text (including markup)?"
|
| 142 |
msgstr ""
|
| 143 |
|
| 144 |
+
#: includes/views/admin.php:65
|
| 145 |
+
msgid "NOTE: Checking this option will use the content of the box below, and override the options above."
|
|
|
|
|
|
|
| 146 |
msgstr ""
|
| 147 |
|
| 148 |
+
#: includes/views/admin.php:69
|
| 149 |
msgid "Show available footer shortcodes"
|
| 150 |
msgstr ""
|
| 151 |
|
|
|
|
| 152 |
#. Translators: The string is a URL to a usage guide.
|
| 153 |
+
#: includes/views/admin.php:86
|
| 154 |
+
msgid "NOTE: For a more comprehensive shortcode usage guide, see the <a href=\"%s\" target=\"_blank\">footer shortcode reference</a>."
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 155 |
msgstr ""
|
| 156 |
|
| 157 |
+
#: includes/views/admin.php:89
|
| 158 |
msgid "The Copyright notice"
|
| 159 |
msgstr ""
|
| 160 |
|
| 161 |
+
#: includes/views/admin.php:90
|
| 162 |
msgid "The Child Theme Link"
|
| 163 |
msgstr ""
|
| 164 |
|
| 165 |
+
#: includes/views/admin.php:91
|
| 166 |
msgid "The Genesis Link"
|
| 167 |
msgstr ""
|
| 168 |
|
| 169 |
+
#: includes/views/admin.php:92
|
| 170 |
msgid "The StudioPress Link"
|
| 171 |
msgstr ""
|
| 172 |
|
| 173 |
+
#: includes/views/admin.php:93
|
| 174 |
msgid "The WordPress Link"
|
| 175 |
msgstr ""
|
| 176 |
|
| 177 |
+
#: includes/views/admin.php:94
|
| 178 |
msgid "Log In/Out Link"
|
| 179 |
msgstr ""
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
package-lock.json
ADDED
|
@@ -0,0 +1,4 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"name": "genesis-simple-edits",
|
| 3 |
+
"lockfileVersion": 1
|
| 4 |
+
}
|
package.json
CHANGED
|
@@ -6,22 +6,8 @@
|
|
| 6 |
"url": "https://github.com/copyblogger/genesis-simple-edits"
|
| 7 |
},
|
| 8 |
"dependencies": {},
|
| 9 |
-
"
|
| 10 |
-
"
|
| 11 |
-
"grunt-autoprefixer": "*",
|
| 12 |
-
"grunt-checktextdomain": "*",
|
| 13 |
-
"grunt-contrib-cssmin": "*",
|
| 14 |
-
"grunt-contrib-imagemin": "*",
|
| 15 |
-
"grunt-contrib-jshint": "*",
|
| 16 |
-
"grunt-contrib-uglify": "*",
|
| 17 |
-
"grunt-contrib-watch": "*",
|
| 18 |
-
"grunt-csscomb": "*",
|
| 19 |
-
"grunt-jsbeautifier": "*",
|
| 20 |
-
"grunt-jsvalidate": "*",
|
| 21 |
-
"grunt-phplint": "*",
|
| 22 |
-
"grunt-styledocco": "*",
|
| 23 |
-
"grunt-wp-i18n": "*",
|
| 24 |
-
"load-grunt-tasks": "*"
|
| 25 |
},
|
| 26 |
"plugin": {
|
| 27 |
"name": "Genesis Simple Edits",
|
|
@@ -29,7 +15,7 @@
|
|
| 29 |
"description": "Genesis Simple Edits lets you edit the three most commonly modified areas in any Genesis theme: the post-info, the post-meta, and the footer area.",
|
| 30 |
"author": "StudioPress",
|
| 31 |
"authoruri": "http://www.studiopress.com/",
|
| 32 |
-
"version": "2.
|
| 33 |
"license": "GPL-2.0+",
|
| 34 |
"licenseuri": "http://www.gnu.org/licenses/gpl-2.0.html",
|
| 35 |
"textdomain": "genesis-simple-edits"
|
| 6 |
"url": "https://github.com/copyblogger/genesis-simple-edits"
|
| 7 |
},
|
| 8 |
"dependencies": {},
|
| 9 |
+
"scripts": {
|
| 10 |
+
"makepot": "composer makepot"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 11 |
},
|
| 12 |
"plugin": {
|
| 13 |
"name": "Genesis Simple Edits",
|
| 15 |
"description": "Genesis Simple Edits lets you edit the three most commonly modified areas in any Genesis theme: the post-info, the post-meta, and the footer area.",
|
| 16 |
"author": "StudioPress",
|
| 17 |
"authoruri": "http://www.studiopress.com/",
|
| 18 |
+
"version": "2.3.0",
|
| 19 |
"license": "GPL-2.0+",
|
| 20 |
"licenseuri": "http://www.gnu.org/licenses/gpl-2.0.html",
|
| 21 |
"textdomain": "genesis-simple-edits"
|
plugin.php
CHANGED
|
@@ -7,7 +7,13 @@
|
|
| 7 |
* Author: StudioPress
|
| 8 |
* Author URI: https://www.studiopress.com/
|
| 9 |
*
|
| 10 |
-
* Version: 2.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 11 |
*
|
| 12 |
* Text Domain: genesis-simple-edits
|
| 13 |
* Domain Path: /languages
|
| 7 |
* Author: StudioPress
|
| 8 |
* Author URI: https://www.studiopress.com/
|
| 9 |
*
|
| 10 |
+
* Version: 2.3.0
|
| 11 |
+
*
|
| 12 |
+
* Requires at least: 5.0.0
|
| 13 |
+
* Requires PHP: 5.6
|
| 14 |
+
*
|
| 15 |
+
* Requires at least: 5.0.0
|
| 16 |
+
* Requires PHP: 5.6
|
| 17 |
*
|
| 18 |
* Text Domain: genesis-simple-edits
|
| 19 |
* Domain Path: /languages
|
readme.txt
CHANGED
|
@@ -2,9 +2,9 @@
|
|
| 2 |
Contributors: nathanrice, studiopress, wpmuguru
|
| 3 |
Donate link: https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=5553118
|
| 4 |
Tags: shortcodes, genesis, genesiswp, studiopress
|
| 5 |
-
Requires at least:
|
| 6 |
Tested up to: 5.2.2
|
| 7 |
-
Stable tag: 2.
|
| 8 |
|
| 9 |
This plugin lets you edit the three most commonly modified areas in any Genesis theme: the post-info (byline), the post-meta, and the footer area.
|
| 10 |
|
|
@@ -25,14 +25,19 @@ This plugin creates a new Genesis settings page that allows you to modify the po
|
|
| 25 |
|
| 26 |
= What are Shortcodes? =
|
| 27 |
|
| 28 |
-
Check out the [Shortcodes API](http://codex.wordpress.org/Shortcode_API) for an explanation, and our [Shortcode Reference](
|
| 29 |
|
| 30 |
= The plugin won't activate =
|
| 31 |
|
| 32 |
-
You must have Genesis (
|
| 33 |
|
| 34 |
== Changelog ==
|
| 35 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 36 |
= 2.2.2 =
|
| 37 |
* Add compatibility with WordPress Coding Standards.
|
| 38 |
|
|
@@ -62,4 +67,4 @@ You must have Genesis (2.4.2+) or a Genesis child theme installed and activated
|
|
| 62 |
* Whitespace, standards, and documentation.
|
| 63 |
|
| 64 |
= 1.0 =
|
| 65 |
-
* Initial Release.
|
| 2 |
Contributors: nathanrice, studiopress, wpmuguru
|
| 3 |
Donate link: https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=5553118
|
| 4 |
Tags: shortcodes, genesis, genesiswp, studiopress
|
| 5 |
+
Requires at least: 5.0.0
|
| 6 |
Tested up to: 5.2.2
|
| 7 |
+
Stable tag: 2.3.0
|
| 8 |
|
| 9 |
This plugin lets you edit the three most commonly modified areas in any Genesis theme: the post-info (byline), the post-meta, and the footer area.
|
| 10 |
|
| 25 |
|
| 26 |
= What are Shortcodes? =
|
| 27 |
|
| 28 |
+
Check out the [Shortcodes API](http://codex.wordpress.org/Shortcode_API) for an explanation, and our [Shortcode Reference](https://studiopress.github.io/genesis/basics/genesis-shortcodes/#footer-shortcodes) for a list of available Genesis-specific shortcodes.
|
| 29 |
|
| 30 |
= The plugin won't activate =
|
| 31 |
|
| 32 |
+
You must have Genesis (3.1.0+) and a Genesis child theme installed and activated on your site.
|
| 33 |
|
| 34 |
== Changelog ==
|
| 35 |
|
| 36 |
+
= 2.3.0 =
|
| 37 |
+
* Remove footer credits setting, replaced by core Genesis 3.1 setting.
|
| 38 |
+
* Increase minimum Genesis version to 3.1.0.
|
| 39 |
+
* Increase minimum WordPress version to 5.0.0.
|
| 40 |
+
|
| 41 |
= 2.2.2 =
|
| 42 |
* Add compatibility with WordPress Coding Standards.
|
| 43 |
|
| 67 |
* Whitespace, standards, and documentation.
|
| 68 |
|
| 69 |
= 1.0 =
|
| 70 |
+
* Initial Release.
|
