Changeset 3394727
- Timestamp:
- 11/13/2025 03:10:32 AM (5 months ago)
- Location:
- infility-global/trunk
- Files:
-
- 2 added
- 2 edited
-
infility_global.php (modified) (4 diffs)
-
readme.txt (modified) (1 diff)
-
widgets/gutenberg-tools (added)
-
widgets/gutenberg-tools/gutenberg-tools.php (added)
Legend:
- Unmodified
- Added
- Removed
-
infility-global/trunk/infility_global.php
r3393329 r3394727 4 4 Plugin URI: https://www.infility.cn/ 5 5 Description: Infility公共插件 6 Version: 2.14.2 66 Version: 2.14.27 7 7 Author: Infility 8 8 Author URI: https://www.infility.cn/ … … 130 130 V2.14.17 (20251110) Ben: 抓取网页数据公共化 131 131 V2.14.18 (20251110) Ben: 抓取网页数据公共化 132 V2.14.27 (20251113) Ben: 新增古腾堡特殊处理工具 132 133 */ 133 134 … … 135 136 function __construct() 136 137 { 137 define( 'INFILITY_GLOBAL_VERSION', '2.14.2 6' );138 define( 'INFILITY_GLOBAL_VERSION', '2.14.27' ); 138 139 define( 'INFILITY_GLOBAL_PATH', plugin_dir_path( __FILE__ ) ); // fullpath/wp-content/plugins/infility-global/ // 有斜杠 139 140 define( 'INFILITY_GLOBAL_URL', plugins_url( '/', __FILE__ ) ); // https://the_domain/wp-content/plugins/infility-global/ // 斜杠是自己加的 … … 360 361 'class' => 'InfilityGlobalTranslatePressTools', // php 类名 361 362 ), 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 ), 362 371 ); 363 372 -
infility-global/trunk/readme.txt
r3392688 r3394727 355 355 = 2.14.21 = 356 356 抓取网页数据公共化 357 358 = 2.14.27 = 359 新增古腾堡特殊处理工具
Note: See TracChangeset
for help on using the changeset viewer.