0 ) { ?>
$form_id,
'form_type' => $form_type,
'reports' => $reports,
);
$this->template( 'common/reports/report-content', $report_args );
} else {
$data_arg = array(
'title' => esc_html__( 'Almost there!', 'forminator' ),
'description' => esc_html__( 'Select a form, poll, or quiz to view its report.', 'forminator' ),
'image' => 'forminator-info.png',
'image_x2' => 'forminator-info@2x.png',
);
$this->template( 'common/reports/content-none', $data_arg );
}
} else {
$data_arg = array(
'title' => esc_html__( 'Oops! Nothing to show', 'forminator' ),
'description' => esc_html__( 'You haven\'t created any forms, polls, or quizzes yet. When you do, you\'ll be able to view their reports here.', 'forminator' ),
'image' => 'forminator-warning.png',
'image_x2' => 'forminator-warning@2x.png',
);
$this->template( 'common/reports/content-none', $data_arg );
}
?>