You appear to be a bot. Output may be restricted
Description
Create a translatable link
Usage
_alink( $class, $url, $linktori, $alt, $id, $extra );
Parameters
- $class
- ( mixed ) required –
- $url
- ( mixed ) required –
- $linktori
- ( mixed ) optional –
- $alt
- ( mixed ) optional –
- $id
- ( mixed ) optional –
- $extra
- ( mixed ) optional –
Returns
void
Source
File name: oik-bwtrace/libs/bobbfunc.php
Lines:
1 to 10 of 10
function _alink( $class=NULL, $url, $linktori=NULL, $alt=NULL, $id=NULL, $extra=NULL ) { $linktoril10n = bw_translate( $linktori ); if ( is_null( $alt ) || $linktori == $alt ) { $altl10n = $linktoril10n; } else { $altl10n = bw_translate( $alt ); } $link = retlink( $class, $url, $linktoril10n, $altl10n, $id, $extra ); e( $link ); }