Get rid of deprecated API usage:
[grauphel.git] / templates / tag.php
index 4a9501c09b3dc53e00499dfb150b56cc0adfb3f3..e8e092efd058de847a2f6dc8f16e3f4c287d827b 100644 (file)
@@ -1,4 +1,4 @@
-<link rel="stylesheet" href="<?php p(OC::$server->getURLGenerator()->linkTo('grauphel','grauphel.css')); ?>" type="text/css"/>
+<?php style('grauphel', 'grauphel'); ?>
 
 <?php /** @var $l OC_L10N */ ?>
 <?php $_['appNavigation']->printPage(); ?>
     <?php foreach ($_['notes'] as $note) { ?>
      <tr id="note-<?php p($note['guid']); ?>">
       <td>
-       <a class="cellclick" href="<?php p(OC::$server->getURLGenerator()->linkToRoute('grauphel.gui.note', array('guid' => $note['guid']))); ?>"><?php echo ($note['title']); ?></a>
+       <a class="cellclick" href="<?php p($_['urlGen']->linkToRoute('grauphel.gui.note', array('guid' => $note['guid']))); ?>"><?php echo ($note['title']); ?></a>
       </td>
       <td style="color: <?php echo p($note['dateColor']); ?>">
-       <?php p(\OCP\Util::formatDate(strtotime($note['last-change-date']))); ?>
+       <?php p($_['date']->formatDate(strtotime($note['last-change-date']))); ?>
       </td>
      </tr>
     <?php } ?>