Changeset 708722
- Timestamp:
- 05/06/2013 04:04:02 PM (13 years ago)
- Location:
- live-stream-badger/trunk
- Files:
-
- 5 edited
-
apis/class-api-core.php (modified) (1 diff)
-
domain/domain-core.php (modified) (1 diff)
-
live-stream-badger-plugin.php (modified) (1 diff)
-
scheduler/class-menu-item-updater.php (modified) (1 diff)
-
shortcode/class-embedded-stream.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
live-stream-badger/trunk/apis/class-api-core.php
r700755 r708722 3 3 include_once ( 'class-api.php' ); 4 4 include_once ( 'class-api-twitch.php' ); 5 include_once LSB_PLUGIN_BASE _URL . '/domain/domain-core.php';5 include_once LSB_PLUGIN_BASE . 'domain/domain-core.php'; 6 6 7 7 /** -
live-stream-badger/trunk/domain/domain-core.php
r700790 r708722 1 1 <?php 2 2 3 include_once LSB_PLUGIN_BASE _URL . '/domain/class-stream-info.php';4 include_once LSB_PLUGIN_BASE _URL . '/domain/class-stream-url.php';5 include_once LSB_PLUGIN_BASE _URL . '/domain/class-menu-item.php';3 include_once LSB_PLUGIN_BASE . 'domain/class-stream-info.php'; 4 include_once LSB_PLUGIN_BASE . 'domain/class-stream-url.php'; 5 include_once LSB_PLUGIN_BASE . 'domain/class-menu-item.php'; 6 6 7 7 //eof -
live-stream-badger/trunk/live-stream-badger-plugin.php
r700997 r708722 11 11 */ 12 12 13 if ( !defined( 'LSB_PLUGIN_BASE _URL' ) ) {14 define( 'LSB_PLUGIN_BASE _URL', dirname( __FILE__ ) );13 if ( !defined( 'LSB_PLUGIN_BASE' ) ) { 14 define( 'LSB_PLUGIN_BASE', plugin_dir_path( __FILE__ ) ); 15 15 } 16 16 17 include_once ( LSB_PLUGIN_BASE_URL . '/apis/class-api-core.php' );18 include_once ( LSB_PLUGIN_BASE_URL . '/domain/domain-core.php' );17 include_once( LSB_PLUGIN_BASE . 'apis/class-api-core.php' ); 18 include_once( LSB_PLUGIN_BASE . 'domain/domain-core.php' ); 19 19 20 include_once ( LSB_PLUGIN_BASE_URL . '/stream-status-widget.php' );21 include_once ( LSB_PLUGIN_BASE_URL . '/shortcode/class-embedded-stream.php' );22 include_once ( LSB_PLUGIN_BASE_URL . '/scheduler/class-menu-item-updater.php' );20 include_once( LSB_PLUGIN_BASE . 'stream-status-widget.php' ); 21 include_once( LSB_PLUGIN_BASE . 'shortcode/class-embedded-stream.php' ); 22 include_once( LSB_PLUGIN_BASE . 'scheduler/class-menu-item-updater.php' ); 23 23 24 24 // Register widget -
live-stream-badger/trunk/scheduler/class-menu-item-updater.php
r700755 r708722 1 1 <?php 2 2 3 // Die if we haven't been included by WordPress4 3 if ( !defined( 'ABSPATH' ) ) 5 4 die(); 6 5 7 include_once ( LSB_PLUGIN_BASE _URL . '/apis/class-api-core.php' );8 include_once ( LSB_PLUGIN_BASE _URL . '/domain/domain-core.php' );6 include_once ( LSB_PLUGIN_BASE . 'apis/class-api-core.php' ); 7 include_once ( LSB_PLUGIN_BASE . 'domain/domain-core.php' ); 9 8 10 9 /** -
live-stream-badger/trunk/shortcode/class-embedded-stream.php
r707591 r708722 1 1 <?php 2 2 3 include_once LSB_PLUGIN_BASE _URL . '/view/class-embedded-twitch-view.php';3 include_once LSB_PLUGIN_BASE . 'view/class-embedded-twitch-view.php'; 4 4 5 5 class LSB_Embedded_Stream {
Note: See TracChangeset
for help on using the changeset viewer.