Changeset 2810 for branches/plugin/bbpress.php
- Timestamp:
- 01/17/2011 05:26:05 AM (15 years ago)
- File:
-
- 1 edited
-
branches/plugin/bbpress.php (modified) (14 diffs)
Legend:
- Unmodified
- Added
- Removed
-
branches/plugin/bbpress.php
r2790 r2810 1 1 <?php 2 2 3 /** 3 4 * The bbPress Plugin … … 15 16 * Author: The bbPress Community 16 17 * Author URI: http://bbpress.org 17 * Version: plugin- bleeding18 * Version: plugin-alpha 18 19 */ 19 20 20 21 /** 21 * bbPress ve sion22 * bbPress version 22 23 * 23 24 * Set the version early so other plugins have an inexpensive way to check if 24 25 * bbPress is already loaded. 25 26 * 26 * Note: Loaded does NOT mean initialized. 27 * Note: Checking for defined( 'BBP_VERSION' ) in your code does NOT 28 * guarantee bbPress is initialized and listening. 27 29 */ 28 define( 'BBP_VERSION', 'plugin- bleeding' );30 define( 'BBP_VERSION', 'plugin-alpha' ); 29 31 30 32 if ( !class_exists( 'bbPress' ) ) : … … 35 37 * 36 38 * @since bbPress (r2464) 39 * @todo Use BP_Component class 37 40 */ 38 41 class bbPress { 39 42 40 / / Post type43 /** Post type *************************************************************/ 41 44 42 45 /** … … 55 58 var $reply_id; 56 59 57 / / Post status identifiers60 /** Post status ***********************************************************/ 58 61 59 62 /** … … 77 80 var $trash_status_id; 78 81 79 / / Slugs82 /** Slugs *****************************************************************/ 80 83 81 84 /** … … 109 112 var $view_slug; 110 113 111 / / Absolute Paths114 /** Paths *****************************************************************/ 112 115 113 116 /** … … 121 124 var $themes_dir; 122 125 123 / / URLs126 /** URLs ******************************************************************/ 124 127 125 128 /** … … 138 141 var $themes_url; 139 142 140 / / Current identifiers143 /** Current ID's **********************************************************/ 141 144 142 145 /** … … 155 158 var $current_reply_id; 156 159 157 / / User objects160 /** User ******************************************************************/ 158 161 159 162 /** … … 167 170 var $displayed_user; 168 171 169 / / Query objects172 /** Query *****************************************************************/ 170 173 171 174 /** … … 184 187 var $reply_query; 185 188 186 / / Arrays189 /** Arrays ****************************************************************/ 187 190 188 191 /** … … 191 194 var $sub_forums; 192 195 193 / / Errors196 /** Errors ****************************************************************/ 194 197 195 198 /** … … 198 201 var $errors; 199 202 200 / / Views203 /** Views *****************************************************************/ 201 204 202 205 /** … … 204 207 */ 205 208 var $views; 209 210 /** Forms *****************************************************************/ 211 212 /** 213 * @var int The current tab index for form building 214 */ 215 var $tab_index; 216 206 217 207 218 /**
Note: See TracChangeset
for help on using the changeset viewer.