Changeset 909241
- Timestamp:
- 05/06/2014 09:15:42 PM (12 years ago)
- Location:
- smartpost-templates/tags/2.2
- Files:
-
- 3 edited
- 1 moved
-
. (moved) (moved from smartpost-templates/branches/2.2)
-
components/attachments/sp_postAttachments.php (modified) (1 diff)
-
components/video/sp_catVideo.php (modified) (1 diff)
-
smartpost.php (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
smartpost-templates/tags/2.2/components/attachments/sp_postAttachments.php
r909227 r909241 37 37 */ 38 38 static function init(){ 39 require_once('ajax/sp_post AttachmentsAJAX.php');39 require_once('ajax/sp_postattachmentsAJAX.php'); 40 40 sp_postAttachmentsAJAX::init(); 41 41 self::enqueueCSS(); -
smartpost-templates/tags/2.2/components/video/sp_catVideo.php
r909227 r909241 109 109 */ 110 110 static function init(){ 111 require_once( 'ajax/sp_catVideoAJAX.php');111 require_once('ajax/sp_catVideoAJAX.php'); 112 112 sp_catVideoAJAX::init(); 113 113 wp_register_script( 'sp_catVideoJS', plugins_url('js/sp_catVideo.js', __FILE__), array('jquery', 'sp_admin_js') ); -
smartpost-templates/tags/2.2/smartpost.php
r909227 r909241 31 31 */ 32 32 function __construct(){ 33 require_once( 'core/sp_core.php');34 require_once( 'sp_install.php');33 require_once('core/sp_core.php'); 34 require_once('sp_install.php'); 35 35 self::init_sp_classes( dirname(__FILE__) . "/updates" ); 36 36 37 37 $this->sp_init(); 38 38 39 require_once( 'components/component/sp_catComponent.php');40 require_once( 'components/component/sp_postComponent.php');39 require_once('components/component/sp_catComponent.php'); 40 require_once('components/component/sp_postComponent.php'); 41 41 sp_catComponent::init_cat_component(); 42 42 sp_postComponent::init_post_component(); … … 44 44 self::find_sp_classes( dirname(__FILE__) . "/components/" ); 45 45 46 require_once( 'sp_category.php');47 require_once( 'sp_admin.php');48 require_once( 'sp_post.php');46 require_once('sp_category.php'); 47 require_once('sp_admin.php'); 48 require_once('sp_post.php'); 49 49 50 50 self::init_sp_classes( dirname(__FILE__) . "/widgets" ); … … 56 56 } 57 57 58 require_once( 'sp_uninstall.php');58 require_once('sp_uninstall.php'); 59 59 } 60 60
Note: See TracChangeset
for help on using the changeset viewer.