Changeset 2685467
- Timestamp:
- 02/27/2022 01:39:39 AM (4 years ago)
- Location:
- wpstoreapp-spellcheck/trunk
- Files:
-
- 2 edited
-
readme.txt (modified) (1 diff)
-
wpstore-spellcheck.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
wpstoreapp-spellcheck/trunk/readme.txt
r2685214 r2685467 1 === WPStore Spell Check ===1 === WPStore.app Spell Check === 2 2 Contributors: bestony 3 3 Donate link: https://wpstore.app -
wpstoreapp-spellcheck/trunk/wpstore-spellcheck.php
r2685214 r2685467 1 1 <?php 2 2 3 /* 3 Plugin Name: WPStore Spell Check4 Plugin Name: WPStore.app Spell Check 4 5 Plugin URI: https://www.wpstore.app/?p=291 5 6 Description: Check Text Syntax in Chinese … … 13 14 Domain Path: /languages 14 15 */ 15 if(!class_exists( "WPS_SpellCheck")){ 16 require_once "WPStore_Option.php"; 17 require_once "WPStore_API.php"; 18 require_once "WPStore_Gutenberg.php"; 19 class WPS_SpellCheck{ 20 public function init() { 21 WPStore_Option::init(); 22 WPStore_API::init(); 23 WPStore_Gutenberg::init(); 24 } 25 } 26 $instance = new WPS_SpellCheck(); 27 $instance->init(); 16 if (!class_exists("WPS_SpellCheck")) { 17 require_once "WPStore_Option.php"; 18 require_once "WPStore_API.php"; 19 require_once "WPStore_Gutenberg.php"; 20 class WPS_SpellCheck 21 { 22 public function init() 23 { 24 WPStore_Option::init(); 25 WPStore_API::init(); 26 WPStore_Gutenberg::init(); 27 } 28 } 29 $instance = new WPS_SpellCheck(); 30 $instance->init(); 28 31 }
Note: See TracChangeset
for help on using the changeset viewer.