Plugin Directory

Changeset 2685467


Ignore:
Timestamp:
02/27/2022 01:39:39 AM (4 years ago)
Author:
bestony
Message:

feat: rename plugin

Location:
wpstoreapp-spellcheck/trunk
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • wpstoreapp-spellcheck/trunk/readme.txt

    r2685214 r2685467  
    1 === WPStore Spell Check ===
     1=== WPStore.app Spell Check ===
    22Contributors: bestony
    33Donate link: https://wpstore.app
  • wpstoreapp-spellcheck/trunk/wpstore-spellcheck.php

    r2685214 r2685467  
    11<?php
     2
    23/*
    3 Plugin Name: WPStore Spell Check
     4Plugin Name: WPStore.app Spell Check
    45Plugin URI: https://www.wpstore.app/?p=291
    56Description: Check Text Syntax in Chinese
     
    1314Domain Path: /languages
    1415*/
    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();
     16if (!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();
    2831}
Note: See TracChangeset for help on using the changeset viewer.