source: trunk/web/app/out/dist/views/artiste_onglets.php @ 1

Last change on this file since 1 was 1, checked in by dj3c1t, 12 years ago

import initial

File size: 1.0 KB
Line 
1<div id="artiste_onglets">
2<?php if($env->out["edit_ok"]) : ?>
3  <div class="artiste_edit_onglet">
4    <a href="<?= $env->url(array("e" => "set_artiste_infos", "artiste" => $env->out["artiste"]["id"])) ?>"><img src="<?= $env->out_file("icons/edit.gif") ?>" alt="edit" /></a>
5  </div>
6<?php endif; ?>
7
8
9  <div class="artiste_ariane">
10         <a href="<?= $env->url(array("e" => "artistes")) ?>">Artistes</a>
11    &gt; <a href="<?= $env->url(array("e" => "artistes", "artiste" => $env->out["artiste"]["id"])) ?>"><?= $env->out["artiste"]["nom"] ?></a>
12<?php if($env->page && $env->page !== "presentation") : ?>
13    &gt; <!-- a href="<?= $_SERVER["REQUEST_URI"] ?>"><?= $env->page ?></a -->
14         <a href="<?=
15              $env->url
16              ( array
17                ( "e" => "artistes",
18                  "artiste" => $env->out["artiste"]["id"],
19                  "page" => $env->page
20                )
21              )
22            ?>"><?= $env->page ?></a>
23<?php endif; ?>
24  </div>
25
26  <div class="clear"><!-- --></div>
27</div>
Note: See TracBrowser for help on using the repository browser.