classes
10 years ago
elements
10 years ago
define.php
10 years ago
general-functions.php
10 years ago
general-hooks.php
10 years ago
general-shortcodes.php
10 years ago
index.php
10 years ago
index.php
44 lines
| 1 | <?php |
| 2 | |
| 3 | // load class files |
| 4 | include_once( 'classes/class-auxin-widget-shortcode-map.php' ); |
| 5 | |
| 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/recent-posts.php' ); |
| 19 | include_once( 'elements/accordion.php' ); |
| 20 | include_once( 'elements/attachment-url.php' ); |
| 21 | include_once( 'elements/audio.php' ); |
| 22 | include_once( 'elements/button.php' ); |
| 23 | include_once( 'elements/code.php' ); |
| 24 | include_once( 'elements/contact-form.php' ); |
| 25 | include_once( 'elements/divider.php' ); |
| 26 | include_once( 'elements/dropcap.php' ); |
| 27 | include_once( 'elements/gallery.php' ); |
| 28 | include_once( 'elements/gmap.php' ); // check |
| 29 | include_once( 'elements/highlight.php' ); |
| 30 | include_once( 'elements/image.php' ); |
| 31 | // check if instagram-feed is activated then it adds its element to page builder and widget |
| 32 | if( auxin_is_plugin_active( 'instagram-feed/instagram-feed.php' ) ) { |
| 33 | include_once( 'elements/instagram-feed.php' ); |
| 34 | } |
| 35 | include_once( 'elements/latest-posts-slider.php' ); |
| 36 | include_once( 'elements/quote.php' ); |
| 37 | include_once( 'elements/search.php' ); |
| 38 | include_once( 'elements/socials-list.php' ); |
| 39 | include_once( 'elements/tabs.php' ); |
| 40 | include_once( 'elements/text.php' ); |
| 41 | include_once( 'elements/video.php' ); |
| 42 | include_once( 'elements/contact-box.php' ); |
| 43 | |
| 44 |