commons
4 years ago
dashboard
4 years ago
dialogs
5 years ago
email-lists
5 years ago
embedded
5 years ago
global
4 years ago
integrations
5 years ago
integrations-page
5 years ago
popup
5 years ago
settings
4 years ago
slidein
5 years ago
sshare
5 years ago
dashboard.php
4 years ago
entries.php
4 years ago
integrations.php
4 years ago
settings.php
4 years ago
tutorials.php
4 years ago
upsell.php
4 years ago
widget-analytics.php
4 years ago
tutorials.php
28 lines
| 1 | <?php |
| 2 | /** |
| 3 | * Main wrapper for Hustle's tutorials. |
| 4 | * |
| 5 | * @uses ./../global/sui-components/sui-header |
| 6 | * |
| 7 | * @package Hustle |
| 8 | * @since 4.4.6 |
| 9 | */ |
| 10 | $is_free = Opt_In_Utils::_is_free(); |
| 11 | |
| 12 | $header = array( |
| 13 | 'title' => 'Tutorials' |
| 14 | ); |
| 15 | |
| 16 | $footer = array( |
| 17 | 'is_large' => true, |
| 18 | 'is_free' => $is_free, |
| 19 | ); |
| 20 | ?> |
| 21 | |
| 22 | <?php |
| 23 | $this->render( 'admin/global/sui-components/sui-header', $header ); |
| 24 | |
| 25 | echo '<div id="hustle-tutorials-page"></div>'; |
| 26 | |
| 27 | $this->render( 'admin/global/sui-components/sui-footer', $footer ); |
| 28 |