Parent Directory
|
Revision Log
|
Revision Graph
checking in a few last files
| 1 | <?php |
| 2 | |
| 3 | /* useful style functions */ |
| 4 | |
| 5 | function stylelab_linker($style, $prepend = '', $append = '') { |
| 6 | $as = array('link', 'visited', 'hover', 'active'); |
| 7 | $output = ''; |
| 8 | |
| 9 | while($link = array_pop($as)) { |
| 10 | $output .= "$prepend a:$link $append { $style }"; |
| 11 | } |
| 12 | |
| 13 | return $output; |
| 14 | } |
| ViewVC Help | |
| Powered by ViewVC 1.1.2 |