Ejemplo n.º 1
0
<?php

$template->assign('PageTopic', 'Open/Close Forms');
$container = array();
$container['url'] = 'form_open_processing.php';
$container['type'] = 'BETA';
$container['open'] = Globals::isBetaOpen();
$PHP_OUTPUT .= '<p>Beta Application Status: <span class="';
if (Globals::isBetaOpen()) {
    $PHP_OUTPUT .= 'green">OPEN';
} else {
    $PHP_OUTPUT .= 'red">CLOSED';
}
$PHP_OUTPUT .= '</span></p>';
$PHP_OUTPUT .= create_link($container, '<b>' . (Globals::isBetaOpen() ? 'Close' : 'Open') . ' Application Form</b>');
$container['type'] = 'FEATURE';
$container['open'] = Globals::isFeatureRequestOpen();
$PHP_OUTPUT .= '<p>Feature Request Status: <span class="';
if (Globals::isFeatureRequestOpen()) {
    $PHP_OUTPUT .= 'green">OPEN';
} else {
    $PHP_OUTPUT .= 'red">CLOSED';
}
$PHP_OUTPUT .= '</span></p>';
$PHP_OUTPUT .= create_link($container, '<b>' . (Globals::isFeatureRequestOpen() ? 'Close' : 'Open') . ' Application Form</b>');
Ejemplo n.º 2
0
<?php

if (!Globals::isFeatureRequestOpen()) {
    create_error('Feature requests are currently not being accepted.');
}
$template->assign('PageTopic', 'Feature Request');
if (!isset($var['Status'])) {
    SmrSession::updateVar('Status', 'Opened');
}
$container = $var;
$container['Status'] = 'Implemented';
$template->assign('ViewImplementedFeaturesHref', SmrSession::getNewHREF($container));
$container = $var;
$container['Status'] = 'Opened';
$container['ShowOld'] = true;
$template->assign('ShowOldFeaturesHref', SmrSession::getNewHREF($container));
$container = $var;
$container['Status'] = 'Rejected';
$template->assign('ShowRejectedFeaturesHref', SmrSession::getNewHREF($container));
$showCurrent = (!isset($var['ShowOld']) || $var['ShowOld'] !== true) && $var['Status'] == 'Opened';
$template->assign('ShowCurrent', $showCurrent);
$template->assign('Status', $var['Status']);
if ($var['Status'] != 'Implemented') {
    $template->assign('PreviousImplementedTotal', getFeaturesCount('Implemented'));
}
if ($var['Status'] != 'Opened' || !$showCurrent) {
    $template->assign('CurrentTotal', getFeaturesCount('Opened', true));
}
if ($var['Status'] != 'Opened' || $showCurrent) {
    $template->assign('OldTotal', getFeaturesCount('Opened'));
}