| 1 |
<?php |
| 2 |
/** |
| 3 |
* Module Name: VideoPress |
| 4 |
* Module Description: Fast, ad-free video hosting |
| 5 |
* First Introduced: 2.5 |
| 6 |
* Free: false |
| 7 |
* Requires Connection: Yes |
| 8 |
* Sort Order: 27 |
| 9 |
* Module Tags: Photos and Videos |
| 10 |
* Feature: Writing |
| 11 |
* Additional Search Queries: video, videos, videopress |
| 12 |
* Plans: business, premium |
| 13 |
*/ |
| 14 |
|
| 15 |
include_once dirname( __FILE__ ) . '/videopress/utility-functions.php'; |
| 16 |
include_once dirname( __FILE__ ) . '/videopress/shortcode.php'; |
| 17 |
include_once dirname( __FILE__ ) . '/videopress/class.videopress-options.php'; |
| 18 |
include_once dirname( __FILE__ ) . '/videopress/class.videopress-scheduler.php'; |
| 19 |
include_once dirname( __FILE__ ) . '/videopress/class.videopress-xmlrpc.php'; |
| 20 |
include_once dirname( __FILE__ ) . '/videopress/class.videopress-cli.php'; |
| 21 |
include_once dirname( __FILE__ ) . '/videopress/class.jetpack-videopress.php'; |
| 22 |
|
| 23 |
if ( is_admin() ) { |
| 24 |
include_once dirname( __FILE__ ) . '/videopress/editor-media-view.php'; |
| 25 |
include_once dirname( __FILE__ ) . '/videopress/class.videopress-edit-attachment.php'; |
| 26 |
include_once dirname( __FILE__ ) . '/videopress/class.videopress-ajax.php'; |
| 27 |
} |
| 28 |
|