BBCodeLibrary::DoWiki( $bbcode, $action, $name, $default, $params, $content )
Description
Source
File: bp-forums/admin/parser.php
943 944 945 946 947 948 949 950 951 | function DoWiki( $bbcode , $action , $name , $default , $params , $content ) { $name = $bbcode ->Wikify( $default ); if ( $action == BBCODE_CHECK) return strlen ( $name ) > 0; $title = trim(@ $params [ 'title' ]); if ( strlen ( $title ) <= 0) $title = trim( $default ); return "<a href=\"{$bbcode->wiki_url}$name\" class=\"bbcode_wiki\">" . htmlspecialchars( $title ) . "</a>" ; } |
Questions?
We're always happy to help with code or other questions you might have! Search our developer docs, contact support, or connect with our sales team.