Файл: concrete5.7.5.6/concrete/single_pages/dashboard/reports/surveys.php
Строк: 59
<?php defined('C5_EXECUTE') or die("Access Denied.");
// Helpers
$ih = Loader::helper('concrete/ui');
// Content
if ($this->controller->getTask() == 'viewDetail') {
?>
<?php echo Loader::helper('concrete/dashboard')->getDashboardPaneHeaderWrapper(
t('Results for "%s"', $current_survey),
false,
false,
false); ?>
<div class="ccm-dashboard-header-buttons">
<a href="<?php echo $view->action('view') ?>" class="btn btn-default">
<?php echo t('Go back') ?>
</a>
</div>
<div class="row">
<div class="col-sm-7">
<table class="table table-striped">
<thead>
<tr>
<th><span><?php echo t('Option') ?></span></th>
<th><span><?php echo t('IP Address') ?></span></th>
<th><span><?php echo t('Date') ?></span></th>
<th><span><?php echo t('User') ?></span></th>
</tr>
</thead>
<tbody>
<?php
foreach ($survey_details as $detail) {
?>
<tr>
<td><?php echo $detail['option'] ?></td>
<td><?php echo $detail['ipAddress'] ?></td>
<td><?php echo $detail['date'] ?></td>
<td><?php echo $detail['user'] ?></td>
</tr>
<?php } ?>
</tbody>
</table>
</div>
<div class="col-sm-3 col-sm-offset-1">
<div>
<div class="text-center">
<?php echo $pie_chart ?>
</div>
<?php echo $chart_options ?>
</div>
</div>
</div>
<?php echo Loader::helper('concrete/dashboard')->getDashboardPaneFooterWrapper(false) ?>
<?php } else { ?>
<?php echo Loader::helper('concrete/dashboard')->getDashboardPaneHeaderWrapper(t('Surveys'), false, false); ?>
<?php if (count($surveys) == 0) { ?>
<p>
<?php echo t('You have not created any surveys.') ?>
</p>
<?php } else { ?>
<div class="ccm-dashboard-content-full">
<table class="ccm-search-results-table">
<thead>
<tr>
<th class="<?php echo $surveyList->getSearchResultsClass('question') ?>">
<a href="<?php echo $surveyList->getSortByURL('question', 'asc') ?>">
<?php echo t('Name') ?>
</a>
</th>
<th class="<?php echo $surveyList->getSearchResultsClass('cvName') ?>">
<a href="<?php echo $surveyList->getSortByURL('cvName', 'asc') ?>">
<?php echo t('Found on Page') ?>
</a>
</th>
<th class="<?php echo $surveyList->getSearchResultsClass('lastResponse') ?>">
<a href="<?php echo $surveyList->getSortByURL('lastResponse', 'desc') ?>">
<?php echo t('Last Response') ?>
</a>
</th>
<th class="col-sm-2 text-right <?php echo $surveyList->getSearchResultsClass('numberOfResponses') ?>" style="white-space: nowrap" ">
<a href="<?php echo $surveyList->getSortByURL('numberOfResponses', 'desc') ?>">
<?php echo t('Number of Responses') ?>
</a>
</th>
</tr>
</thead>
<tbody>
<?php
foreach ($surveys as $survey) {
?>
<tr>
<td>
<strong>
<a href="<?php echo $view->action(
'viewDetail',
$survey['bID'],
$survey['cID']) ?>">
<?php echo $survey['question'] ?>
</a>
</strong>
</td>
<td>
<?php echo $survey['cvName'] ?>
</td>
<td>
<?php echo $this->controller->formatDate($survey['lastResponse']) ?>
</td>
<td class="text-right">
<?php echo $survey['numberOfResponses'] ?>
</td>
</tr>
<?php
}
?>
</tbody>
</table>
</div>
<?php
}
$surveyList->displayPagingV2();
?>
<?php echo Loader::helper('concrete/dashboard')->getDashboardPaneFooterWrapper() ?>
<?php } ?>