1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/agendav_ynh.git synced 2024-09-03 20:36:12 +02:00
agendav_ynh/sources/web/application/views/sidebar.php
2014-01-07 17:53:08 +01:00

56 lines
1.4 KiB
PHP

<?php
if (isset($logo)) {
echo $logo;
}
?>
<div id="shortcuts" class="block">
<div id="shortcut_add_event"><?php echo $this->i18n->_('labels',
'createevent')?></div>
</div>
<div class="calendar_list ui-widget block" id="own_calendar_list">
<div class="ui-widget-header ui-corner-all">
<?php echo
$this->i18n->_('labels', 'calendars')?></div>
<div class="ui-widget-content">
<ul>
</ul>
<div class="buttons">
<?php echo img(array(
'id' => 'calendar_add',
'class' => 'pseudobutton',
'src' => 'img/calendar_add.png',
'alt' => $this->i18n->_('labels', 'create'),
'title' => $this->i18n->_('labels', 'create'),
)); ?>
</div>
</div><!-- block contents -->
</div><!-- block -->
<div class="calendar_list ui-widget block" id="shared_calendar_list">
<div class="ui-widget-header ui-corner-all">
<?php echo $this->i18n->_('labels', 'shared_calendars')?>
</div>
<div class="ui-widget-content">
<ul>
</ul>
<div class="buttons">
<span id="toggle_all_shared_calendars" class="pseudobutton hide_all"
title="<?php echo $this->i18n->_('labels', 'toggleallcalendars')?>"
><i class="icon-eye-close
icon-large"></i></span>
</div>
</div>
</div><!-- block -->
<div id="footer">
<?php
$img = array(
'src' => 'img/agendav_small.png',
'alt' => 'AgenDAV',
);
echo img($img);
?>
<p><?php echo $this->config->item('footer')?></p>
</div> <!-- footer -->