Пример #1
0
    function vereine(&$rows, &$lists, &$pageNav, $option)
    {
        global $mainframe;
        CLMViewVereine::setVereineToolbar();
        $user =& JFactory::getUser();
        // Ordering allowed ?
        $ordering = $lists['order'] == 'a.ordering';
        JHTML::_('behavior.tooltip');
        ?>
		<form action="index.php?option=com_clm&section=vereine" method="post" name="adminForm">

		<table>
		<tr>
			<td align="left" width="100%">
				<?php 
        echo JText::_('Filter');
        ?>
:
		<input type="text" name="search" id="search" value="<?php 
        echo $lists['search'];
        ?>
" class="text_area" onchange="document.adminForm.submit();" />
		<button onclick="this.form.submit();"><?php 
        echo JText::_('GO');
        ?>
</button>
		<button onclick="document.getElementById('search').value='';this.form.getElementById('filter_catid').value='0';this.form.getElementById('filter_state').value='';this.form.submit();"><?php 
        echo JText::_('Reset');
        ?>
</button>
			</td>
			<td nowrap="nowrap">
				<?php 
        // eigenes Dropdown Menue
        echo "&nbsp;&nbsp;&nbsp;" . $lists['sid'];
        echo "&nbsp;&nbsp;&nbsp;" . $lists['state'];
        ?>
			</td>
		</tr>
		</table>

			<table class="adminlist">
			<thead>
				<tr>
					<th width="10">
						<?php 
        echo JText::_('NUM');
        ?>
					</th>
					<th width="10">
						<input type="checkbox" name="toggle" value="" onclick="checkAll(<?php 
        echo count($rows);
        ?>
);" />
					</th>
					<th class="title">
						<?php 
        echo JHTML::_('grid.sort', 'VEREIN', 'a.name', @$lists['order_Dir'], @$lists['order']);
        ?>
					</th>
					<th width="11%">
						<?php 
        echo JHTML::_('grid.sort', 'VEREIN_ZPS', 'a.zps', @$lists['order_Dir'], @$lists['order']);
        ?>
					</th>
					<th width="22%">
						<?php 
        echo JHTML::_('grid.sort', 'VEREIN_HOMEPAGE', 'a.homepage', @$lists['order_Dir'], @$lists['order']);
        ?>
					</th>
					<th width="11%">
						<?php 
        echo JHTML::_('grid.sort', 'SAISON', 'c.name', @$lists['order_Dir'], @$lists['order']);
        ?>
					</th>
					<th width="6%">
						<?php 
        echo JHTML::_('grid.sort', 'PUBLISHED', 'a.published', @$lists['order_Dir'], @$lists['order']);
        ?>
					</th>
					<th width="8%" nowrap="nowrap">
						<?php 
        echo JHTML::_('grid.sort', 'ORDER', 'a.ordering', @$lists['order_Dir'], @$lists['order']);
        ?>
						<?php 
        echo JHTML::_('grid.order', $rows);
        ?>
					</th>
					<th width="1%" nowrap="nowrap">
						<?php 
        echo JHTML::_('grid.sort', 'ID', 'a.id', @$lists['order_Dir'], @$lists['order']);
        ?>
					</th>
				</tr>
			</thead>
			<tfoot>
				<tr>
					<td colspan="12">
						<?php 
        echo $pageNav->getListFooter();
        ?>
					</td>
				</tr>
			</tfoot>
			<tbody>
			<?php 
        $k = 0;
        for ($i = 0, $n = count($rows); $i < $n; $i++) {
            $row =& $rows[$i];
            $link = JRoute::_('index.php?option=com_clm&section=vereine&task=edit&cid[]=' . $row->id);
            $checked = JHTML::_('grid.checkedout', $row, $i);
            $published = JHTML::_('grid.published', $row, $i);
            ?>
				<tr class="<?php 
            echo 'row' . $k;
            ?>
">


					<td align="center">
						<?php 
            echo $pageNav->getRowOffset($i);
            ?>
					</td>

					<td>
						<?php 
            echo $checked;
            ?>
					</td>

					<td>
						<?php 
            if (JTable::isCheckedOut($user->get('id'), $row->checked_out)) {
                echo $row->name;
            } else {
                ?>
								<span class="editlinktip hasTip" title="<?php 
                echo JText::_('VEREIN_EDIT');
                ?>
::<?php 
                echo $row->name . $row->man_nr;
                ?>
">
							<a href="<?php 
                echo $link;
                ?>
">
								<?php 
                echo $row->name;
                ?>
</a></span>
							<?php 
            }
            ?>
					</td>

					<td align="center">
						<?php 
            echo $row->zps;
            ?>
					</td>
					<td align="center">
						<a href="<?php 
            echo $row->homepage;
            ?>
" target="_blank"><?php 
            echo $row->homepage;
            ?>
</a>
					</td>
                    
					<td align="center">
						<?php 
            echo $row->saison;
            ?>
					</td>
                    
					<td align="center">
						<?php 
            echo $published;
            ?>
					</td>



	<td class="order">
	<?php 
            $disabled = $ordering ? '' : 'disabled="disabled"';
            ?>
	<input type="text" name="order[]" size="5" value="<?php 
            echo $row->ordering;
            ?>
" <?php 
            echo $disabled;
            ?>
 class="text_area" style="text-align: center" />
					</td>

					<td align="center">
						<?php 
            echo $row->id;
            ?>
					</td>
				</tr>
				<?php 
            $k = 1 - $k;
        }
        ?>
			</tbody>
			</table>
		<input type="hidden" name="option" value="com_clm" />
		<input type="hidden" name="task" value="" />
		<input type="hidden" name="boxchecked" value="0" />
		<input type="hidden" name="filter_order" value="<?php 
        echo $lists['order'];
        ?>
" />
		<input type="hidden" name="filter_order_Dir" value="<?php 
        echo $lists['order_Dir'];
        ?>
" />
		<?php 
        echo JHTML::_('form.token');
        ?>
		</form>
		<?php 
    }