Making WordPress.org


Ignore:
Timestamp:
06/09/2016 10:28:14 PM (10 years ago)
Author:
obenland
Message:

Plugin Directory: Docs cleanup.

For a more at ease IDE.

See #1584.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • sites/trunk/wordpress.org/public_html/wp-content/plugins/plugin-directory/class-plugin-i18n.php

    r3319 r3326  
    1212         * @var string Global cache group for related caching
    1313         */
    14         var $i18n_cache_group = 'plugins-i18n';
     14        public $i18n_cache_group = 'plugins-i18n';
     15
     16        public $master_project;
    1517
    1618        public static $use_cache = true;
    1719        public static $set_cache = true;
     20
     21        /**
     22         * @var \wpdb WordPress database abstraction object.
     23         */
     24        protected $db;
    1825
    1926        /**
     
    7582
    7683        /**
    77          * Cache setting, with proper global cache group
    78          *
    79          * @param string $slug Plugin slug
    80          * @param string $branch dev|stable
    81          * @param string $suffix Arbitrary cache key suffix, if needed for uniqueness
     84         * Cache setting, with proper global cache group.
     85         *
     86         * @param string $slug    Plugin slug
     87         * @param string $branch  dev|stable
     88         * @param mixed  $content Content to be cached.
     89         * @param string $suffix  Optional. Arbitrary cache key suffix, if needed for uniqueness.
    8290         *
    8391         * @return bool As returned by wp_cache_set()
Note: See TracChangeset for help on using the changeset viewer.