示例#1
0
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * 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.
 */
defined('_JEXEC') or die('Restricted access');
?>
<div id="eventlist" class="el_eventlist">
<p class="buttons">
	<?php 
if (!$this->params->get('popup')) {
    //don't show in printpopup
    echo ELOutput::submitbutton($this->dellink, $this->params, 'eventlist');
    echo ELOutput::archivebutton($this->elsettings->oldevent, $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->params->get('page_title');
    ?>
	</h1>
示例#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.
 */
defined('_JEXEC') or die('Restricted access');
// add javascript
JHTML::_('behavior.mootools');
$this->document->addScript($this->baseurl . '/components/com_eventlist/assets/js/search.js');
?>
<div id="eventlist" class="el_eventlist">
<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);
}
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);
    ?>
	</h1>
示例#3
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="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>
示例#4
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="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>
示例#5
0
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * 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.
 */
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');
    ?>