Version Description
Download this release
Release Info
| Developer | themeisle |
| Plugin | |
| Version | 1.1.12 |
| Comparing to | |
| See all releases | |
Code changes from version 1.1.11 to 1.1.12
- CHANGELOG.md +4 -0
- README.md +7 -0
- includes/Main.php +1 -1
- readme.txt +7 -0
- templates-patterns-collection.php +5 -4
- vendor/autoload.php +1 -1
- vendor/composer/InstalledVersions.php +4 -4
- vendor/composer/autoload_real.php +7 -7
- vendor/composer/autoload_static.php +4 -4
- vendor/composer/installed.php +4 -4
CHANGELOG.md
CHANGED
|
@@ -1,3 +1,7 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
##### [Version 1.1.11](https://github.com/Codeinwp/templates-patterns-collection/compare/v1.1.10...v1.1.11) (2021-05-13)
|
| 2 |
|
| 3 |
* Improve translations
|
| 1 |
+
##### [Version 1.1.12](https://github.com/Codeinwp/templates-patterns-collection/compare/v1.1.11...v1.1.12) (2021-05-17)
|
| 2 |
+
|
| 3 |
+
* Improve plugin constant definitions.
|
| 4 |
+
|
| 5 |
##### [Version 1.1.11](https://github.com/Codeinwp/templates-patterns-collection/compare/v1.1.10...v1.1.11) (2021-05-13)
|
| 6 |
|
| 7 |
* Improve translations
|
README.md
CHANGED
|
@@ -39,6 +39,13 @@ Yes, you can. You can either chose to import one template or the entire starter
|
|
| 39 |
|
| 40 |
## Changelog ##
|
| 41 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 42 |
##### [Version 1.1.11](https://github.com/Codeinwp/templates-patterns-collection/compare/v1.1.10...v1.1.11) (2021-05-13)
|
| 43 |
|
| 44 |
* Improve translations
|
| 39 |
|
| 40 |
## Changelog ##
|
| 41 |
|
| 42 |
+
##### [Version 1.1.12](https://github.com/Codeinwp/templates-patterns-collection/compare/v1.1.11...v1.1.12) (2021-05-17)
|
| 43 |
+
|
| 44 |
+
* Improve plugin constant definitions.
|
| 45 |
+
|
| 46 |
+
|
| 47 |
+
|
| 48 |
+
|
| 49 |
##### [Version 1.1.11](https://github.com/Codeinwp/templates-patterns-collection/compare/v1.1.10...v1.1.11) (2021-05-13)
|
| 50 |
|
| 51 |
* Improve translations
|
includes/Main.php
CHANGED
|
@@ -18,7 +18,7 @@ class Main {
|
|
| 18 |
*
|
| 19 |
* @var string Version string.
|
| 20 |
*/
|
| 21 |
-
const VERSION = '1.1.
|
| 22 |
/**
|
| 23 |
* Sites Library API URL.
|
| 24 |
*
|
| 18 |
*
|
| 19 |
* @var string Version string.
|
| 20 |
*/
|
| 21 |
+
const VERSION = '1.1.12';
|
| 22 |
/**
|
| 23 |
* Sites Library API URL.
|
| 24 |
*
|
readme.txt
CHANGED
|
@@ -39,6 +39,13 @@ Yes, you can. You can either chose to import one template or the entire starter
|
|
| 39 |
|
| 40 |
== Changelog ==
|
| 41 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 42 |
##### [Version 1.1.11](https://github.com/Codeinwp/templates-patterns-collection/compare/v1.1.10...v1.1.11) (2021-05-13)
|
| 43 |
|
| 44 |
* Improve translations
|
| 39 |
|
| 40 |
== Changelog ==
|
| 41 |
|
| 42 |
+
##### [Version 1.1.12](https://github.com/Codeinwp/templates-patterns-collection/compare/v1.1.11...v1.1.12) (2021-05-17)
|
| 43 |
+
|
| 44 |
+
* Improve plugin constant definitions.
|
| 45 |
+
|
| 46 |
+
|
| 47 |
+
|
| 48 |
+
|
| 49 |
##### [Version 1.1.11](https://github.com/Codeinwp/templates-patterns-collection/compare/v1.1.10...v1.1.11) (2021-05-13)
|
| 50 |
|
| 51 |
* Improve translations
|
templates-patterns-collection.php
CHANGED
|
@@ -2,7 +2,7 @@
|
|
| 2 |
/**
|
| 3 |
* Plugin Name: Templates Patterns Collection
|
| 4 |
* Description: This plugin is an add-on to Neve WordPress theme which offers access to Templates and Block Patterns library service to be used with the theme.
|
| 5 |
-
* Version: 1.1.
|
| 6 |
* Author: ThemeIsle
|
| 7 |
* Author URI: https://themeisle.com
|
| 8 |
* License: GPLv3
|
|
@@ -92,6 +92,10 @@ function ti_tpc_load_textdomain() {
|
|
| 92 |
load_plugin_textdomain( 'templates-patterns-collection', false, dirname( plugin_basename( __FILE__ ) ) . '/languages/' );
|
| 93 |
}
|
| 94 |
|
|
|
|
|
|
|
|
|
|
|
|
|
| 95 |
$autoload_path = __DIR__ . '/vendor/autoload.php';
|
| 96 |
if ( is_file( $autoload_path ) ) {
|
| 97 |
require_once $autoload_path;
|
|
@@ -103,9 +107,6 @@ function ti_tpc_run() {
|
|
| 103 |
define( 'TI_ONBOARDING_DISABLED', false );
|
| 104 |
}
|
| 105 |
|
| 106 |
-
define( 'TIOB_URL', plugin_dir_url( __FILE__ ) );
|
| 107 |
-
define( 'TIOB_PATH', dirname( __FILE__ ) . '/' );
|
| 108 |
-
|
| 109 |
if ( class_exists( 'WP_CLI' ) ) {
|
| 110 |
require_once 'includes/WP_Cli.php';
|
| 111 |
}
|
| 2 |
/**
|
| 3 |
* Plugin Name: Templates Patterns Collection
|
| 4 |
* Description: This plugin is an add-on to Neve WordPress theme which offers access to Templates and Block Patterns library service to be used with the theme.
|
| 5 |
+
* Version: 1.1.12
|
| 6 |
* Author: ThemeIsle
|
| 7 |
* Author URI: https://themeisle.com
|
| 8 |
* License: GPLv3
|
| 92 |
load_plugin_textdomain( 'templates-patterns-collection', false, dirname( plugin_basename( __FILE__ ) ) . '/languages/' );
|
| 93 |
}
|
| 94 |
|
| 95 |
+
define( 'TIOB_URL', plugin_dir_url( __FILE__ ) );
|
| 96 |
+
define( 'TIOB_PATH', dirname( __FILE__ ) . '/' );
|
| 97 |
+
|
| 98 |
+
|
| 99 |
$autoload_path = __DIR__ . '/vendor/autoload.php';
|
| 100 |
if ( is_file( $autoload_path ) ) {
|
| 101 |
require_once $autoload_path;
|
| 107 |
define( 'TI_ONBOARDING_DISABLED', false );
|
| 108 |
}
|
| 109 |
|
|
|
|
|
|
|
|
|
|
| 110 |
if ( class_exists( 'WP_CLI' ) ) {
|
| 111 |
require_once 'includes/WP_Cli.php';
|
| 112 |
}
|
vendor/autoload.php
CHANGED
|
@@ -4,4 +4,4 @@
|
|
| 4 |
|
| 5 |
require_once __DIR__ . '/composer/autoload_real.php';
|
| 6 |
|
| 7 |
-
return
|
| 4 |
|
| 5 |
require_once __DIR__ . '/composer/autoload_real.php';
|
| 6 |
|
| 7 |
+
return ComposerAutoloaderInit44e2f0520174a5dab73359b13e409d94::getLoader();
|
vendor/composer/InstalledVersions.php
CHANGED
|
@@ -27,8 +27,8 @@ class InstalledVersions
|
|
| 27 |
private static $installed = array (
|
| 28 |
'root' =>
|
| 29 |
array (
|
| 30 |
-
'pretty_version' => '1.1.
|
| 31 |
-
'version' => '1.1.
|
| 32 |
'aliases' =>
|
| 33 |
array (
|
| 34 |
),
|
|
@@ -39,8 +39,8 @@ private static $installed = array (
|
|
| 39 |
array (
|
| 40 |
'codeinwp/templates-patterns-collection' =>
|
| 41 |
array (
|
| 42 |
-
'pretty_version' => '1.1.
|
| 43 |
-
'version' => '1.1.
|
| 44 |
'aliases' =>
|
| 45 |
array (
|
| 46 |
),
|
| 27 |
private static $installed = array (
|
| 28 |
'root' =>
|
| 29 |
array (
|
| 30 |
+
'pretty_version' => '1.1.12',
|
| 31 |
+
'version' => '1.1.12.0',
|
| 32 |
'aliases' =>
|
| 33 |
array (
|
| 34 |
),
|
| 39 |
array (
|
| 40 |
'codeinwp/templates-patterns-collection' =>
|
| 41 |
array (
|
| 42 |
+
'pretty_version' => '1.1.12',
|
| 43 |
+
'version' => '1.1.12.0',
|
| 44 |
'aliases' =>
|
| 45 |
array (
|
| 46 |
),
|
vendor/composer/autoload_real.php
CHANGED
|
@@ -2,7 +2,7 @@
|
|
| 2 |
|
| 3 |
// autoload_real.php @generated by Composer
|
| 4 |
|
| 5 |
-
class
|
| 6 |
{
|
| 7 |
private static $loader;
|
| 8 |
|
|
@@ -22,15 +22,15 @@ class ComposerAutoloaderInit012ecd39ee10d42e943a09dc55e81c26
|
|
| 22 |
return self::$loader;
|
| 23 |
}
|
| 24 |
|
| 25 |
-
spl_autoload_register(array('
|
| 26 |
self::$loader = $loader = new \Composer\Autoload\ClassLoader(\dirname(\dirname(__FILE__)));
|
| 27 |
-
spl_autoload_unregister(array('
|
| 28 |
|
| 29 |
$useStaticLoader = PHP_VERSION_ID >= 50600 && !defined('HHVM_VERSION') && (!function_exists('zend_loader_file_encoded') || !zend_loader_file_encoded());
|
| 30 |
if ($useStaticLoader) {
|
| 31 |
require __DIR__ . '/autoload_static.php';
|
| 32 |
|
| 33 |
-
call_user_func(\Composer\Autoload\
|
| 34 |
} else {
|
| 35 |
$map = require __DIR__ . '/autoload_namespaces.php';
|
| 36 |
foreach ($map as $namespace => $path) {
|
|
@@ -51,19 +51,19 @@ class ComposerAutoloaderInit012ecd39ee10d42e943a09dc55e81c26
|
|
| 51 |
$loader->register(true);
|
| 52 |
|
| 53 |
if ($useStaticLoader) {
|
| 54 |
-
$includeFiles = Composer\Autoload\
|
| 55 |
} else {
|
| 56 |
$includeFiles = require __DIR__ . '/autoload_files.php';
|
| 57 |
}
|
| 58 |
foreach ($includeFiles as $fileIdentifier => $file) {
|
| 59 |
-
|
| 60 |
}
|
| 61 |
|
| 62 |
return $loader;
|
| 63 |
}
|
| 64 |
}
|
| 65 |
|
| 66 |
-
function
|
| 67 |
{
|
| 68 |
if (empty($GLOBALS['__composer_autoload_files'][$fileIdentifier])) {
|
| 69 |
require $file;
|
| 2 |
|
| 3 |
// autoload_real.php @generated by Composer
|
| 4 |
|
| 5 |
+
class ComposerAutoloaderInit44e2f0520174a5dab73359b13e409d94
|
| 6 |
{
|
| 7 |
private static $loader;
|
| 8 |
|
| 22 |
return self::$loader;
|
| 23 |
}
|
| 24 |
|
| 25 |
+
spl_autoload_register(array('ComposerAutoloaderInit44e2f0520174a5dab73359b13e409d94', 'loadClassLoader'), true, true);
|
| 26 |
self::$loader = $loader = new \Composer\Autoload\ClassLoader(\dirname(\dirname(__FILE__)));
|
| 27 |
+
spl_autoload_unregister(array('ComposerAutoloaderInit44e2f0520174a5dab73359b13e409d94', 'loadClassLoader'));
|
| 28 |
|
| 29 |
$useStaticLoader = PHP_VERSION_ID >= 50600 && !defined('HHVM_VERSION') && (!function_exists('zend_loader_file_encoded') || !zend_loader_file_encoded());
|
| 30 |
if ($useStaticLoader) {
|
| 31 |
require __DIR__ . '/autoload_static.php';
|
| 32 |
|
| 33 |
+
call_user_func(\Composer\Autoload\ComposerStaticInit44e2f0520174a5dab73359b13e409d94::getInitializer($loader));
|
| 34 |
} else {
|
| 35 |
$map = require __DIR__ . '/autoload_namespaces.php';
|
| 36 |
foreach ($map as $namespace => $path) {
|
| 51 |
$loader->register(true);
|
| 52 |
|
| 53 |
if ($useStaticLoader) {
|
| 54 |
+
$includeFiles = Composer\Autoload\ComposerStaticInit44e2f0520174a5dab73359b13e409d94::$files;
|
| 55 |
} else {
|
| 56 |
$includeFiles = require __DIR__ . '/autoload_files.php';
|
| 57 |
}
|
| 58 |
foreach ($includeFiles as $fileIdentifier => $file) {
|
| 59 |
+
composerRequire44e2f0520174a5dab73359b13e409d94($fileIdentifier, $file);
|
| 60 |
}
|
| 61 |
|
| 62 |
return $loader;
|
| 63 |
}
|
| 64 |
}
|
| 65 |
|
| 66 |
+
function composerRequire44e2f0520174a5dab73359b13e409d94($fileIdentifier, $file)
|
| 67 |
{
|
| 68 |
if (empty($GLOBALS['__composer_autoload_files'][$fileIdentifier])) {
|
| 69 |
require $file;
|
vendor/composer/autoload_static.php
CHANGED
|
@@ -4,7 +4,7 @@
|
|
| 4 |
|
| 5 |
namespace Composer\Autoload;
|
| 6 |
|
| 7 |
-
class
|
| 8 |
{
|
| 9 |
public static $files = array (
|
| 10 |
'50f1a0479b2a5847c529d784c54cebe2' => __DIR__ . '/..' . '/codeinwp/themeisle-sdk/load.php',
|
|
@@ -56,9 +56,9 @@ class ComposerStaticInit012ecd39ee10d42e943a09dc55e81c26
|
|
| 56 |
public static function getInitializer(ClassLoader $loader)
|
| 57 |
{
|
| 58 |
return \Closure::bind(function () use ($loader) {
|
| 59 |
-
$loader->prefixLengthsPsr4 =
|
| 60 |
-
$loader->prefixDirsPsr4 =
|
| 61 |
-
$loader->classMap =
|
| 62 |
|
| 63 |
}, null, ClassLoader::class);
|
| 64 |
}
|
| 4 |
|
| 5 |
namespace Composer\Autoload;
|
| 6 |
|
| 7 |
+
class ComposerStaticInit44e2f0520174a5dab73359b13e409d94
|
| 8 |
{
|
| 9 |
public static $files = array (
|
| 10 |
'50f1a0479b2a5847c529d784c54cebe2' => __DIR__ . '/..' . '/codeinwp/themeisle-sdk/load.php',
|
| 56 |
public static function getInitializer(ClassLoader $loader)
|
| 57 |
{
|
| 58 |
return \Closure::bind(function () use ($loader) {
|
| 59 |
+
$loader->prefixLengthsPsr4 = ComposerStaticInit44e2f0520174a5dab73359b13e409d94::$prefixLengthsPsr4;
|
| 60 |
+
$loader->prefixDirsPsr4 = ComposerStaticInit44e2f0520174a5dab73359b13e409d94::$prefixDirsPsr4;
|
| 61 |
+
$loader->classMap = ComposerStaticInit44e2f0520174a5dab73359b13e409d94::$classMap;
|
| 62 |
|
| 63 |
}, null, ClassLoader::class);
|
| 64 |
}
|
vendor/composer/installed.php
CHANGED
|
@@ -1,8 +1,8 @@
|
|
| 1 |
<?php return array (
|
| 2 |
'root' =>
|
| 3 |
array (
|
| 4 |
-
'pretty_version' => '1.1.
|
| 5 |
-
'version' => '1.1.
|
| 6 |
'aliases' =>
|
| 7 |
array (
|
| 8 |
),
|
|
@@ -13,8 +13,8 @@
|
|
| 13 |
array (
|
| 14 |
'codeinwp/templates-patterns-collection' =>
|
| 15 |
array (
|
| 16 |
-
'pretty_version' => '1.1.
|
| 17 |
-
'version' => '1.1.
|
| 18 |
'aliases' =>
|
| 19 |
array (
|
| 20 |
),
|
| 1 |
<?php return array (
|
| 2 |
'root' =>
|
| 3 |
array (
|
| 4 |
+
'pretty_version' => '1.1.12',
|
| 5 |
+
'version' => '1.1.12.0',
|
| 6 |
'aliases' =>
|
| 7 |
array (
|
| 8 |
),
|
| 13 |
array (
|
| 14 |
'codeinwp/templates-patterns-collection' =>
|
| 15 |
array (
|
| 16 |
+
'pretty_version' => '1.1.12',
|
| 17 |
+
'version' => '1.1.12.0',
|
| 18 |
'aliases' =>
|
| 19 |
array (
|
| 20 |
),
|
