Beispiel #1
0
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU General Public License for more details.
 * You should have received a copy of the GNU General Public License
 * along with EventList; if not, write to the Free Software
 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.
 */
// no direct access
defined('_JEXEC') or die('Restricted access');
?>
<div id="eventlist" class="event_id<?php 
echo $this->row->did;
?>
 el_details">
	<p class="buttons">
			<?php 
echo ELOutput::mailbutton($this->row->slug, 'details', $this->params);
?>
			<?php 
echo ELOutput::printbutton($this->print_link, $this->params);
?>
	</p>

<?php 
if ($this->params->def('show_page_title', 1)) {
    ?>
	<h1 class="componentheading">
		<?php 
    echo $this->params->get('page_title');
    ?>
	</h1>
<?php 
Beispiel #2
0
 * You should have received a copy of the GNU General Public License
 * along with EventList; if not, write to the Free Software
 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.
 */
// no direct access
defined('_JEXEC') or die('Restricted access');
?>
<div id="eventlist" class="el_categoryevents">
<p class="buttons">
	<?php 
if (!$this->params->get('popup')) {
    //don't show in printpopup
    echo ELOutput::submitbutton($this->dellink, $this->params, 'categoryevents');
    echo ELOutput::archivebutton($this->elsettings->oldevent, $this->params, $this->task, $this->category->id);
}
echo ELOutput::mailbutton($this->params);
echo ELOutput::printbutton($this->print_link, $this->params);
?>
</p>

<?php 
if ($this->params->def('show_page_title', 1)) {
    ?>

    <h1 class='componentheading'>
		<?php 
    echo $this->escape($this->category->catname);
    ?>
	</h1>

<?php 
Beispiel #3
0
 * You should have received a copy of the GNU General Public License
 * along with EventList; if not, write to the Free Software
 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.
 */
// no direct access
defined('_JEXEC') or die('Restricted access');
?>
<div id="eventlist" class="el_categoryevents">
<p class="buttons">
	<?php 
if (!$this->params->get('popup')) {
    //don't show in printpopup
    echo ELOutput::submitbutton($this->dellink, $this->params);
    echo ELOutput::archivebutton($this->params, $this->task, $this->category->slug);
}
echo ELOutput::mailbutton($this->category->slug, 'categoryevents', $this->params);
echo ELOutput::printbutton($this->print_link, $this->params);
?>
</p>

<?php 
if ($this->params->def('show_page_title', 1)) {
    ?>

    <h1 class='componentheading'>
		<?php 
    echo $this->task == 'archive' ? $this->escape($this->category->catname . ' - ' . JText::_('ARCHIVE')) : $this->escape($this->category->catname);
    ?>
	</h1>

<?php 
Beispiel #4
0
 * GNU General Public License for more details.
 * You should have received a copy of the GNU General Public License
 * along with EventList; if not, write to the Free Software
 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.
 */
defined('_JEXEC') or die('Restricted access');
?>
<div id="eventlist" class="el_venueevents">
<p class="buttons">
	<?php 
if (!$this->params->get('popup')) {
    //don't show in printpopup
    echo ELOutput::submitbutton($this->dellink, $this->params);
    echo ELOutput::archivebutton($this->params, $this->task, $this->venue->slug);
}
echo ELOutput::mailbutton($this->venue->slug, 'venueevents', $this->params);
echo ELOutput::printbutton($this->print_link, $this->params);
?>
</p>
<?php 
if ($this->params->def('show_page_title', 1)) {
    ?>
	<h1 class='componentheading'>
		<?php 
    echo $this->escape($this->pagetitle);
    ?>
    <?php 
    echo ELOutput::editbutton($this->item->id, $this->venue->id, $this->params, $this->allowedtoeditvenue, 'editvenue');
    ?>
	</h1>
<?php