File: navIcons.php

package info (click to toggle)
gallery 1.5.4-3
  • links: PTS
  • area: main
  • in suites: etch, etch-m68k
  • size: 26,712 kB
  • ctags: 6,567
  • sloc: php: 33,824; sh: 446; xml: 96; makefile: 88; perl: 61
file content (15 lines) | stat: -rw-r--r-- 534 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
<?php /* $Id: navIcons.php 12232 2005-12-08 23:32:42Z jenst $ */ ?>
<?php

if ($gallery->direction == "ltr") {
    $fpImgUrl= getImagePath('icons/nav_first.gif');
    $ppImgUrl= getImagePath('icons/nav_prev.gif');
    $npImgUrl= getImagePath('icons/nav_next.gif');
    $lpImgUrl= getImagePath('icons/nav_last.gif');
} else {
    $fpImgUrl= getImagePath('icons/nav_last.gif');
    $ppImgUrl= getImagePath('icons/nav_next.gif');
    $npImgUrl= getImagePath('icons/nav_prev.gif');
    $lpImgUrl= getImagePath('icons/nav_first.gif');
}
?>