Example #1
0
$jSeason = new jSeason($database);
$season_id = getSeasonID();
$jSeason->load($season_id);
$season_link = '';
//"&season=" .$jSeason->id;
$render->assign('jSeason', $jSeason);
$render->assign('season_link', $season_link);
$render->assign('adminUrl', "view=Administration&Itemid={$Itemid}&season=" . getSeasonID());
/*
 * TODO: BUG: XXX - the admin scripts were not loaded if the scorer was not part of a competition
 */
$my =& $mainframe->getUser();
if ($jSeason->scorer_id == $my->id) {
    //$mainframe->addCustomHeadTag('<script type="text/javascript" src="' .$mosConfig_live_site. '/components/com_jtips/views/Administration/Administration.js"></script>');
    //$mainframe->addCustomHeadTag('<script type="text/javascript" src="' .$mosConfig_live_site. '/administrator/components/com_jtips/lib/date.js"></script>');
    jTipsCommonHTML::loadCalendar();
}
$render->displayPreferencesLink();
if (!isset($jTips['Menu']) or empty($jTips['Menu'])) {
    $jTips['Menu'] = array();
}
if (array_key_exists($view, $jTips['Menu'])) {
    $classes = array('Dashboard' => array('class' => "sectiontableentry2 jmain_menu", 'cursor' => "cursor:pointer;cursor:hand;", 'onevent' => "onClick='window.location.href=\"" . jTipsRoute("index.php?option=com_jtips&Itemid={$Itemid}&view=Dashboard{$season_link}") . "\"'; onmouseover='this.className=\"sectiontableentry1 jmain_menu_hover\"' onmouseout='this.className=\"sectiontableentry2 jmain_menu\"'"), 'CompetitionLadder' => array('class' => "sectiontableentry2 jmain_menu", 'cursor' => "cursor:pointer;cursor:hand;", 'onevent' => "onClick='window.location.href=\"" . jTipsRoute("index.php?option=com_jtips&Itemid={$Itemid}&view=CompetitionLadder{$season_link}") . "\"' onmouseover='this.className=\"sectiontableentry1 jmain_menu_hover\"' onmouseout='this.className=\"sectiontableentry2 jmain_menu\"'"), 'TeamLadder' => array('class' => "sectiontableentry2 jmain_menu", 'cursor' => "cursor:pointer;cursor:hand;", 'onevent' => "onClick='window.location.href=\"" . jTipsRoute("index.php?option=com_jtips&Itemid={$Itemid}&view=TeamLadder{$season_link}") . "\"' onmouseover='this.className=\"sectiontableentry1 jmain_menu_hover\"' onmouseout='this.className=\"sectiontableentry2 jmain_menu\"'"));
    if ($jSeason->disable_tips or is_a($jTipsCurrentUser, 'jTipsUser') and $jTipsCurrentUser->inSeason($jSeason) and $jTipsCurrentUser->status == '1') {
        $classes['Tips'] = array('class' => "sectiontableentry2 jmain_menu", 'cursor' => "cursor:pointer;cursor:hand;", 'onevent' => "onClick='window.location.href=\"" . jTipsRoute("index.php?option=com_jtips&Itemid={$Itemid}&view=Tips{$season_link}") . "\"' onmouseover='this.className=\"sectiontableentry1 jmain_menu_hover\"' onmouseout='this.className=\"sectiontableentry2 jmain_menu\"'");
    }
    $classes[$view]['class'] = 'sectiontableheader jmain_menu';
    $classes[$view]['onevent'] = substr($classes[$view]['onevent'], 0, strpos($classes[$view]['onevent'], ' '));
    $render->assign('menuitems', $classes);
    $size = round(100 / count($classes), 1);
    $render->assign('cellsize', $size);
Example #2
0
    function EditView($title, $formData, $icon = 'generic')
    {
        global $jTips, $jLang;
        jTipsCommonHTML::loadCalendar();
        ?>
		<form action="index2.php" name="adminForm" method="post" enctype="multipart/form-data">
		<input type="hidden" name="option" value='<?php 
        echo jTipsGetParam($_REQUEST, 'option', 'com_jtips');
        ?>
'>
		<input type='hidden' name='task' value=''>
		<input type="hidden" name="hidemainmenu" value="0" />
		<input type='hidden' name='module' value='<?php 
        echo jTipsGetParam($_REQUEST, 'module', '');
        ?>
'>
		<input type="hidden" name="<?php 
        echo jTipsSpoofValue();
        ?>
" value="1" />
		<?php 
        if (isJoomla15()) {
            JToolBarHelper::title($title, $icon);
        } else {
            ?>
			<table class="adminheading">
			<tr><th class="edit"><?php 
            echo $title;
            ?>
</th></tr>
			</table>
			<?php 
        }
        foreach ($formData as $fieldset) {
            ?>
			<fieldset>
			<legend><?php 
            echo $jLang[$fieldset['legend']];
            ?>
</legend>
			<table class="admintable" width="100%">
			<tbody>
			<?php 
            $hiddenFields = array();
            foreach ($fieldset['fields'] as $row) {
                if ($row['field']['type'] == 'hidden') {
                    $hiddenFields[] = $row;
                    continue;
                }
                if ($row['field']['type'] == 'editor') {
                    $colspan = 2;
                } else {
                    $colspan = 1;
                }
                ?>
<tr>
				<td class="key" width="25%"><label for="<?php 
                echo $row['field']['attributes']['id'];
                ?>
"><?php 
                echo $jLang[$row['label']];
                ?>
</label></td>
				<td width="25%" colspan="<?php 
                echo $colspan;
                ?>
"><?php 
                echo parseEditField($row['field']);
                ?>
</td>
				<?php 
                if ($colspan == 1) {
                    ?>
				<td width="50%"><?php 
                    echo isset($row['description']) ? $jLang[$row['description']] : "";
                    ?>
&nbsp;</td>
					<?php 
                }
                ?>
				</tr><?php 
            }
            ?>
			</tbody>
			<tfoot>
			</tfoot>
			</table>
			<?php 
            //now loop on the hidden fields
            if (!empty($hiddenFields)) {
                foreach ($hiddenFields as $def) {
                    echo parseEditField($def['field']);
                }
            }
            ?>
			</fieldset>
			<?php 
        }
        ?>
		</form>
		<?php 
    }
Example #3
0
    function display()
    {
        global $jTips, $jLang, $mainframe;
        jTipsCommonHTML::loadCalendar();
        if (isJoomla15()) {
            JToolBarHelper::title($this->formData['title'], 'round');
        } else {
            ?>
			<table class='adminheading'>
			<tr>
				<th><?php 
            echo $this->formData['title'];
            ?>
</th>
			</tr>
			</table>
			<?php 
        }
        ?>
		<style type="text/css">
		.hide {
			display:none;
		}
		</style>
		<form action='index2.php' name='adminForm' id='adminForm' method='post'>
			<input type="hidden" name="task" value="edit" />
			<input type="hidden" name="option" value="com_jtips" />
			<input type="hidden" name="module" value="Rounds" />
			<input type="hidden" name="boxchecked" value="0" />
			<input type="hidden" name="id" id="id" value="<?php 
        echo $this->focus->id;
        ?>
" />
			<input type="hidden" name="filter_order" value="<?php 
        echo jTipsGetParam($_REQUEST, 'filter_order');
        ?>
" />
			<input type="hidden" name="filter_order_Dir" value="<?php 
        echo jTipsGetParam($_REQUEST, 'filter_order_Dir');
        ?>
" />
			<input type="hidden" name="<?php 
        echo jTipsSpoofValue();
        ?>
" value="1" />
			<fieldset>
				<legend><?php 
        echo $jLang['_ADMIN_ROUND_LEGEND'];
        ?>
</legend>
				<table class='admintable' width="100%">
				<tr>
				<td class="key" width="25%"><?php 
        echo $jLang['_ADMIN_SEASON_SELECT'];
        ?>
</td>
				<td><?php 
        echo $this->selectLists['season_id'];
        ?>
</td>
				</tr>
				<tr>
				<td class="key" width="25%"><?php 
        echo $jLang['_ADMIN_ROUND_ROUND'];
        ?>
</td>
				<td><?php 
        echo $this->selectLists['roundnum'];
        ?>
</td>
				</tr>
				<tr>
				<td class="key" width="25%"><?php 
        echo $jLang['_ADMIN_ROUND_START'] . " " . $jLang['_ADMIN_ROUND_DATE'] . " &amp; " . $jLang['_ADMIN_ROUND_TIME'];
        ?>
</td>
				<td>
				<input type="text" name="date_start_date" size="30" value="<?php 
        echo $this->date_start_date;
        ?>
" id="date_start_date" />&nbsp;<img src='components/com_jtips/images/calendar.png' onclick='return showCalendar("date_start_date", "<?php 
        echo $jTips['DateFormat'];
        ?>
");' border='0' alt='...' align='absmiddle' />
				&nbsp;<?php 
        echo $this->date_start_time_hour;
        ?>
				:<?php 
        echo $this->date_start_time_minute;
        ?>
				&nbsp;<?php 
        echo $this->date_start_time_meridiem;
        ?>
				</td>
				</tr>
				<tr>
				<td class="key" width="25%"><?php 
        echo $jLang['_ADMIN_ROUND_END'] . " " . $jLang['_ADMIN_ROUND_DATE'] . " &amp; " . $jLang['_ADMIN_ROUND_TIME'];
        ?>
</td>
				<td>
				<input type="text" name="date_end_date" size="30" value="<?php 
        echo $this->date_end_date;
        ?>
" id="date_end_date" />&nbsp;<img src='components/com_jtips/images/calendar.png' onclick='return showCalendar("date_end_date", "<?php 
        echo $jTips['DateFormat'];
        ?>
");' border='0' alt='...' align='absmiddle' />
				&nbsp;<?php 
        echo $this->date_end_time_hour;
        ?>
				:<?php 
        echo $this->date_end_time_minute;
        ?>
				&nbsp;<?php 
        echo $this->date_end_time_meridiem;
        ?>
				</td>
				</tr>
				<tr>
				<td class="key" width="25%"><label for="show_comments"><?php 
        echo $jLang['_ADMIN_ROUND_SHOW_COMMENTS'];
        ?>
</label></td>
				<td><input type="checkbox" id="show_comments" onClick="$$('.info').toggleClass('hide');" /></td>
				</tr>
				</table>
			</fieldset>
			<fieldset>
			<legend><?php 
        echo $jLang['_ADMIN_ROUND_GAMES_LEGEND'];
        ?>
</legend>
			<?php 
        if (!$this->focus->getStatus() or !$this->focus->exists()) {
            ?>
			<p><input type="button" disabled class="button" onClick="addGameRow();toggleColumns();" id="addgame" value="Add Game" />
			&nbsp;<input type="button" disabled  class="button" onClick="removeGameRow();toggleColumns();" id="removegame" value="Remove Game(s)" /></p>
				<?php 
        }
        ?>
			<div id="round_loading" style="text-align:center;"><img src="components/com_jtips/images/loading.gif" alt="Loading..." border="0" /></div>
			<table class="adminlist" id="games_list" style="display:none;opacity:0;">
				<thead>
				<tr>
					<!--th align='center' width='1'>#</th-->
					<th align="center" width='20'>&nbsp;</th>
					<th id="left_team_th">&nbsp;</th>
					<th id="right_team_th">&nbsp;</th>
					<th><?php 
        echo $jLang['_ADMIN_ROUND_ORDER'];
        ?>
</th>
					<th class="pick_score"><input type='checkbox' onclick='toggleYesNo(this, "score");' <?php 
        echo (is_numeric($this->status) and $this->focus->exists()) ? "style='display:none;'" : "";
        ?>
 id="pick_score_toggle" /> <label for="pick_score_toggle"><?php 
        echo $jLang['_ADMIN_GAME_HAS_SCORE'];
        ?>
</label></th>
					<th class="pick_margin"><input type='checkbox' onclick='toggleYesNo(this, "margin");' <?php 
        echo (is_numeric($this->status) and $this->focus->exists()) ? "style='display:none;'" : "";
        ?>
 id="pick_margin_toggle" /> <label for="pick_margin_toggle"><?php 
        echo $jLang['_ADMIN_GAME_HAS_MARGIN'];
        ?>
</label></th>
					<th class="pick_bonus"><input type='checkbox' onclick='toggleYesNo(this, "bonus");' <?php 
        echo (is_numeric($this->status) and $this->focus->exists()) ? "style='display:none;'" : "";
        ?>
 id="pick_bonus_toggle" /> <label for="pick_bonus_toggle"><?php 
        echo $jLang['_ADMIN_GAME_HAS_BONUS'];
        ?>
</label></th>
		            <th id="left_start_th" class="team_starts">&nbsp;</th>
		            <th id="right_start_th" class="team_starts">&nbsp;</th>
		            <th id="tough_score_th" class="tough_score">&nbsp;</th>
		            <th class="date_time"><?php 
        echo $jLang['_ADMIN_GAME_TIME'];
        ?>
</th>
		            <th id="left_score_th" class="results">&nbsp;</th>
		            <th id="right_score_th" class="results">&nbsp;</th>
		            <th class="bonus_results"><?php 
        echo $jLang['_ADMIN_GAME_BONUS'];
        ?>
</th>
			    <th id="info_th" class="info hide"><?php 
        echo $jLang['_ADMIN_ROUNDS_INFO'];
        ?>
</th>
				</tr>
				</thead>
				<tbody id="table">
				</tbody>
			</table>
			</fieldset>
		</form>
		<?php 
        $init = "\n\t\t<script type='text/javascript'>\n\t\twindow.addEvent('domready', function() {\n\t\t\tgetTheRounds(\$('season_id'))\n\t\t});\n\t\t</script>";
        if (isJoomla15()) {
            $mainframe->addCustomHeadTag($init);
        } else {
            echo $init;
        }
    }