Plugin Directory

Changeset 3267883


Ignore:
Timestamp:
04/07/2025 12:48:31 PM (12 months ago)
Author:
theluckywp
Message:

2.1.13

Location:
luckywp-table-of-contents
Files:
146 added
6 edited

Legend:

Unmodified
Added
Removed
  • luckywp-table-of-contents/trunk/core/base/View.php

    r1974058 r3267883  
    22
    33namespace luckywp\tableOfContents\core\base;
     4
     5use function count;
     6use function is_array;
    47
    58class View extends BaseObject
  • luckywp-table-of-contents/trunk/core/wp/Settings.php

    r2248977 r3267883  
    99use luckywp\tableOfContents\core\helpers\Html;
    1010use luckywp\tableOfContents\core\helpers\Json;
     11
     12use function count;
    1113
    1214class Settings extends BaseObject
  • luckywp-table-of-contents/trunk/front/Toc.php

    r2300571 r3267883  
    77use luckywp\tableOfContents\core\helpers\ValueHelper;
    88use luckywp\tableOfContents\plugin\Settings;
     9
     10use function count;
    911
    1012class Toc
  • luckywp-table-of-contents/trunk/luckywp-table-of-contents.php

    r3267871 r3267883  
    44Plugin URI: https://theluckywp.com/product/table-of-contents/
    55Description: Creates a table of contents for your posts/pages. Works automatically or manually (via shortcode, Gutenberg block or widget).
    6 Version: 2.1.12
     6Version: 2.1.13
    77Author: LuckyWP
    88Author URI: https://theluckywp.com/
     
    5050
    5151$config = require(__DIR__ . '/config/plugin.php');
    52 (new \luckywp\tableOfContents\plugin\Plugin($config))->run('2.1.12', __FILE__, 'lwptoc_');
     52(new \luckywp\tableOfContents\plugin\Plugin($config))->run('2.1.13', __FILE__, 'lwptoc_');
    5353
    5454require_once __DIR__ . '/functions.php';
  • luckywp-table-of-contents/trunk/plugin/Shortcode.php

    r3267871 r3267883  
    1212use WP_Post;
    1313
     14use function array_key_exists;
     15use function count;
    1416use function is_bool;
    1517use function is_string;
  • luckywp-table-of-contents/trunk/readme.txt

    r3267873 r3267883  
    55Requires at least: 4.7
    66Tested up to: 6.7
    7 Stable tag: 2.1.12
     7Stable tag: 2.1.13
    88Requires PHP: 5.6.20
    99License: GPLv2 or later
     
    161161== Changelog ==
    162162
     163= 2.1.13 — 2025-04-07 =
     164* Minor performance improvements.
     165
    163166= 2.1.12 — 2025-04-07 =
    164167* Fix problems with square brackets usage in widget options.
Note: See TracChangeset for help on using the changeset viewer.