classes
9 years ago
elements
9 years ago
define.php
9 years ago
general-functions.php
9 years ago
general-hooks.php
9 years ago
general-shortcodes.php
9 years ago
index.php
9 years ago
index.php
64 lines
| 1 | <?php |
| 2 | |
| 3 | // load class files |
| 4 | include_once( 'classes/class-auxin-siteorigin-widget.php' ); |
| 5 | include_once( 'classes/class-auxin-widget-shortcode-map.php' ); |
| 6 | // commeon functions |
| 7 | include_once( 'general-functions.php' ); |
| 8 | include_once( 'general-hooks.php' ); |
| 9 | |
| 10 | // load shortcode files |
| 11 | include_once( 'general-shortcodes.php' ); |
| 12 | |
| 13 | |
| 14 | |
| 15 | // load elements |
| 16 | include_once( 'elements/about-widget.php' ); |
| 17 | include_once( 'elements/recent-posts-widget.php' ); |
| 18 | include_once( 'elements/popular-posts-widget.php' ); |
| 19 | include_once( 'elements/recent-posts-grid-carousel.php' ); |
| 20 | include_once( 'elements/recent-posts-timeline.php' ); |
| 21 | include_once( 'elements/recent-posts-masonry.php' ); |
| 22 | include_once( 'elements/recent-posts-land-style.php' ); |
| 23 | if( auxin_is_plugin_active( 'so-widgets-bundle/so-widgets-bundle.php' ) ) { |
| 24 | include_once( 'elements/accordion.php' ); |
| 25 | include_once( 'elements/tabs.php' ); |
| 26 | include_once( 'elements/text.php' ); |
| 27 | } |
| 28 | |
| 29 | include_once( 'elements/recent-posts-tiles.php' ); |
| 30 | include_once( 'elements/attachment-url.php' ); |
| 31 | include_once( 'elements/audio.php' ); |
| 32 | include_once( 'elements/button.php' ); |
| 33 | include_once( 'elements/code.php' ); |
| 34 | include_once( 'elements/contact-form.php' ); |
| 35 | include_once( 'elements/divider.php' ); |
| 36 | include_once( 'elements/dropcap.php' ); |
| 37 | include_once( 'elements/gallery.php' ); |
| 38 | include_once( 'elements/gmap.php' ); // check |
| 39 | include_once( 'elements/highlight.php' ); |
| 40 | include_once( 'elements/image.php' ); |
| 41 | include_once( 'elements/touch-slider.php' ); |
| 42 | include_once( 'elements/related-posts.php' ); |
| 43 | include_once( 'elements/before-after.php' ); |
| 44 | |
| 45 | // check if instagram-feed is activated then it adds its element to page builder and widget |
| 46 | if( auxin_is_plugin_active( 'instagram-feed/instagram-feed.php' ) ) { |
| 47 | include_once( 'elements/instagram-feed.php' ); |
| 48 | } |
| 49 | // check if flickr-justified-gallery is activated then it adds its element to page builder and widget |
| 50 | if( auxin_is_plugin_active( 'flickr-justified-gallery/flickr-justified-gallery.php' ) ) { |
| 51 | include_once( 'elements/flickr.php' ); |
| 52 | } |
| 53 | // check if flickr-justified-gallery is activated then it adds its element to page builder and widget |
| 54 | if( auxin_is_plugin_active( 'custom-facebook-feed/custom-facebook-feed.php' ) ) { |
| 55 | include_once( 'elements/facebook.php' ); |
| 56 | } |
| 57 | include_once( 'elements/latest-posts-slider.php' ); |
| 58 | include_once( 'elements/quote.php' ); |
| 59 | include_once( 'elements/search.php' ); |
| 60 | include_once( 'elements/socials-list.php' ); |
| 61 | include_once( 'elements/video.php' ); |
| 62 | include_once( 'elements/contact-box.php' ); |
| 63 | |
| 64 |