You appear to be a bot. Output may be restricted
Description
Create a link
Usage
alink( $class, $url, $linktori, $alt, $id, $extra );
Parameters
- $class
- ( string|null ) required – the classes for the anchor tag
- $url
- ( string ) required – the fully formed URL e.g. http://www.oik-plugins.com
- $linktori
- ( string ) optional – is the text or image
- $alt
- ( string ) optional – text for title= attribute. a11y recommendations are to leave this null
- $id
- ( string ) optional – the unique ID for the anchor tag
- $extra
- ( string ) optional – anything else that needs to go in the <a> tag. e.g. 'onclick=then some javascript'
Returns
voidSource
File name: oik-bwtrace/libs/bobbfunc.phpLines:
1 to 4 of 4
function alink( $class, $url, $linktori=NULL, $alt=NULL, $id=NULL, $extra=NULL ) { $link = retlink( $class, $url, $linktori, $alt, $id, $extra ); e( $link ); }View on GitHub View on Trac