Changeset 4263 for trunk/bbpress.php
- Timestamp:
- 10/20/2012 08:06:36 PM (14 years ago)
- File:
-
- 1 edited
-
trunk/bbpress.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/bbpress.php
r4262 r4263 192 192 $this->plugin_url = apply_filters( 'bbp_plugin_dir_url', plugin_dir_url ( $this->file ) ); 193 193 194 // Themes195 $this-> themes_dir = apply_filters( 'bbp_themes_dir', trailingslashit( $this->plugin_dir . 'templates') );196 $this-> themes_url = apply_filters( 'bbp_themes_url', trailingslashit( $this->plugin_url . 'templates') );194 // Includes 195 $this->includes_dir = apply_filters( 'bbp_includes_dir', trailingslashit( $this->plugin_dir . 'includes' ) ); 196 $this->includes_url = apply_filters( 'bbp_includes_url', trailingslashit( $this->plugin_url . 'includes' ) ); 197 197 198 198 // Languages 199 $this->lang_dir = apply_filters( 'bbp_lang_dir',trailingslashit( $this->plugin_dir . 'languages' ) );200 201 // Includes202 $this-> includes_dir = apply_filters( 'bbp_includes_dir', trailingslashit( $this->plugin_dir . 'includes' ) );203 $this-> includes_url = apply_filters( 'bbp_includes_url', trailingslashit( $this->plugin_url . 'includes' ) );204 199 $this->lang_dir = apply_filters( 'bbp_lang_dir', trailingslashit( $this->plugin_dir . 'languages' ) ); 200 201 // Templates 202 $this->themes_dir = apply_filters( 'bbp_themes_dir', trailingslashit( $this->plugin_dir . 'templates' ) ); 203 $this->themes_url = apply_filters( 'bbp_themes_url', trailingslashit( $this->plugin_url . 'templates' ) ); 204 205 205 /** Identifiers *******************************************************/ 206 206
Note: See TracChangeset
for help on using the changeset viewer.