Plugin Directory

Changeset 1954188


Ignore:
Timestamp:
10/09/2018 08:10:23 PM (7 years ago)
Author:
hayk
Message:

+Required WordPress version

Location:
simple-streamwood/trunk
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • simple-streamwood/trunk/README.txt

    r1938349 r1954188  
    22Contributors: hayk
    33Tags: javascript, streamwood
     4Requires at least: 4.5.0
    45Tested up to: 4.9.8
    56License: GPL3
  • simple-streamwood/trunk/simple-streamwood.php

    r1938349 r1954188  
    2727 */
    2828
    29 if (!defined('WP_CONTENT_URL'))
    30 {
     29if (!defined('WP_CONTENT_URL')) {
    3130    define ('WP_CONTENT_URL', get_option('siteurl').'/wp-content');
    3231}
    33 if (!defined('WP_CONTENT_DIR'))
    34 {
     32if (!defined('WP_CONTENT_DIR')) {
    3533    define ('WP_CONTENT_DIR', ABSPATH.'wp-content');
    3634}
    37 if (!defined('WP_PLUGIN_URL'))
    38 {
     35if (!defined('WP_PLUGIN_URL')) {
    3936    define ('WP_PLUGIN_URL', WP_CONTENT_URL.'/plugins');
    4037}
    41 if (!defined('WP_PLUGIN_DIR'))
    42 {
     38if (!defined('WP_PLUGIN_DIR')) {
    4339    define ('WP_PLUGIN_DIR', WP_CONTENT_DIR.'/plugins');
    4440}
    4541
    4642function activate_simple_streamwood() {
    47     if (!get_option('simple_streamwood_key'))
    48     {
     43    if (!get_option('simple_streamwood_key')) {
    4944        add_option('simple_streamwood_key', '0');
    5045    }
    51     if (!get_option('simple_streamwood_domain_key'))
    52     {
     46    if (!get_option('simple_streamwood_domain_key')) {
    5347        add_option('simple_streamwood_domain_key', '0');
    5448    }
Note: See TracChangeset for help on using the changeset viewer.