Plugin Directory

Changeset 3394727


Ignore:
Timestamp:
11/13/2025 03:10:32 AM (5 months ago)
Author:
infility
Message:

V2.14.27 (20251113) Ben: 新增古腾堡特殊处理工具

Location:
infility-global/trunk
Files:
2 added
2 edited

Legend:

Unmodified
Added
Removed
  • infility-global/trunk/infility_global.php

    r3393329 r3394727  
    44Plugin URI: https://www.infility.cn/
    55Description: Infility公共插件
    6 Version: 2.14.26
     6Version: 2.14.27
    77Author: Infility
    88Author URI: https://www.infility.cn/
     
    130130V2.14.17 (20251110) Ben: 抓取网页数据公共化
    131131V2.14.18 (20251110) Ben: 抓取网页数据公共化
     132V2.14.27 (20251113) Ben: 新增古腾堡特殊处理工具
    132133*/
    133134
     
    135136    function __construct()
    136137    {
    137         define( 'INFILITY_GLOBAL_VERSION', '2.14.26' );
     138        define( 'INFILITY_GLOBAL_VERSION', '2.14.27' );
    138139        define( 'INFILITY_GLOBAL_PATH', plugin_dir_path( __FILE__ ) ); // fullpath/wp-content/plugins/infility-global/ // 有斜杠
    139140        define( 'INFILITY_GLOBAL_URL', plugins_url( '/', __FILE__ ) ); // https://the_domain/wp-content/plugins/infility-global/ // 斜杠是自己加的
     
    360361                'class' => 'InfilityGlobalTranslatePressTools', // php 类名
    361362            ),
     363            'gutenberg-tools' => array(
     364                'key' => 'gutenberg-tools', // 实际代码是用这个去加载代码的。
     365                'title' => 'Gutenberg Tools', // 在后台显示的名称
     366                'brief' => '古腾堡文章编辑器特殊化处理',
     367                'href' => 'setting_page', // 展示设置页面时,调用此方法
     368                // 'file' => 'widgets/progress-bar/progress-bar.php', // 在管理后台,找不到类的时候可能会引入这个文件。
     369                'class' => 'InfilityGlobalGutenbergTools', // php 类名
     370            ),
    362371        );
    363372
  • infility-global/trunk/readme.txt

    r3392688 r3394727  
    355355= 2.14.21 =
    356356抓取网页数据公共化
     357
     358= 2.14.27 =
     359新增古腾堡特殊处理工具
Note: See TracChangeset for help on using the changeset viewer.