PluginProbe
Formidable Forms – WordPress Form Builder for Contact Forms, Calculators, Quizzes & More / 6.10
Formidable Forms – WordPress Form Builder for Contact Forms, Calculators, Quizzes & More v6.10
6.35 6.34 6.33.1 6.33 6.32.1 6.32 6.31 6.25 6.25.1 6.26 6.26.1 6.27 6.28 6.29 6.3 6.3.1 6.3.2 6.30 6.4 6.4.1 6.4.2 6.5 6.5.1 6.5.2 6.5.3 All 141 releases
formidable / classes / views / dashboard / dashboard.php

dashboard.php in Formidable Forms – WordPress Form Builder for Contact Forms, Calculators, Quizzes & More 6.10, at classes/views/dashboard/dashboard.php

49 lines 1.4 KB
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php
2 if ( ! defined( 'ABSPATH' ) ) {
3 die( 'You are not allowed to call this page directly.' );
4 }
5 /**
6 * @var bool $should_display_videos
7 */
8 ?>
9 <div class="frm_wrap frm-dashboard-wrapper">
10 <?php
11 FrmAppHelper::include_svg();
12 FrmAppHelper::get_admin_header(
13 array(
14 'label' => __( 'Dashboard', 'formidable' ),
15 'publish' => array(
16 'FrmAppHelper::add_new_item_link',
17 array(
18 'new_link' => admin_url( 'admin.php?page=formidable-form-templates' ),
19 ),
20 ),
21 )
22 );
23 ?>
24 <div class="frm-dashboard-container wrap frm-flex-box frm-justify-between">
25 <?php $dashboard_view->get_welcome_banner(); ?>
26 <div class="frm-flex-full frm-flex-box frm-flex-col">
27 <?php $dashboard_view->get_counters(); ?>
28 <div class="frm-dashboard-widget frm-card-item frm-px-0">
29 <?php $dashboard_view->get_main_widget(); ?>
30 </div>
31 <?php $dashboard_view->get_payments(); ?>
32 <?php $dashboard_view->get_bottom_widget(); ?>
33 </div>
34 <div class="frm-flex-box frm-flex-col">
35 <div class="frm-dashboard-widget frm-card-item frm-license-widget">
36 <?php $dashboard_view->get_license_management(); ?>
37 </div>
38 <?php
39 if ( $should_display_videos ) {
40 $dashboard_view->get_youtube_video( 'frm-dashboard-widget frm-card-item frm-yt-widget' );
41 }
42 ?>
43 <div class="frm-dashboard-widget frm-card-item frm-inbox-widget frm-px-0">
44 <?php $dashboard_view->get_inbox(); ?>
45 </div>
46 </div>
47 </div>
48 </div>
49