commons
2 years ago
dashboard
2 years ago
dialogs
3 years ago
email-lists
2 years ago
embedded
3 years ago
global
2 years ago
integrations
2 years ago
integrations-page
3 years ago
popup
3 years ago
settings
2 years ago
slidein
3 years ago
sshare
2 years ago
dashboard.php
3 years ago
entries.php
2 years ago
image-markup.php
3 years ago
integrations.php
3 years ago
settings.php
4 years ago
tutorials.php
3 years ago
upsell.php
2 years ago
widget-analytics.php
3 years ago
tutorials.php
29 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 | |
| 11 | $is_free = Opt_In_Utils::is_free(); |
| 12 | |
| 13 | $header = array( |
| 14 | 'title' => 'Tutorials', |
| 15 | ); |
| 16 | |
| 17 | $footer = array( |
| 18 | 'is_large' => true, |
| 19 | 'is_free' => $is_free, |
| 20 | ); |
| 21 | ?> |
| 22 | |
| 23 | <?php |
| 24 | $this->render( 'admin/global/sui-components/sui-header', $header ); |
| 25 | |
| 26 | echo '<div id="hustle-tutorials-page"></div>'; |
| 27 | |
| 28 | $this->render( 'admin/global/sui-components/sui-footer', $footer ); |
| 29 |