Invision::callback_html( $field )
This callback processes any custom BBCodes with parser.php
Description
Source
File: bp-forums/admin/converters/Invision.php
568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 | protected function callback_html( $field ) { // Strips Invision custom HTML first from $field before parsing $field to parser.php $invision_markup = $field ; $invision_markup = html_entity_decode( $invision_markup ); // Replace '[html]' with '<pre><code>' $invision_markup = preg_replace( '/\[html\]/' , '<pre><code>' , $invision_markup ); // Replace '[/html]' with '</code></pre>' $invision_markup = preg_replace( '/\[\/html\]/' , '</code></pre>' , $invision_markup ); // Replace '[sql]' with '<pre><code>' $invision_markup = preg_replace( '/\[sql\]/' , '<pre><code>' , $invision_markup ); // Replace '[/sql]' with '</code></pre>' $invision_markup = preg_replace( '/\[\/sql\]/' , '</code></pre>' , $invision_markup ); // Replace '[php]' with '<pre><code>' $invision_markup = preg_replace( '/\[php\]/' , '<pre><code>' , $invision_markup ); // Replace '[/php]' with '</code></pre>' $invision_markup = preg_replace( '/\[\/php\]/' , '</code></pre>' , $invision_markup ); // Replace '[xml]' with '<pre><code>' $invision_markup = preg_replace( '/\[xml\]/' , '<pre><code>' , $invision_markup ); // Replace '[/xml]' with '</code></pre>' $invision_markup = preg_replace( '/\[\/xml\]/' , '</code></pre>' , $invision_markup ); // Replace '[CODE]' with '<pre><code>' $invision_markup = preg_replace( '/\[CODE\]/' , '<pre><code>' , $invision_markup ); // Replace '[/CODE]' with '</code></pre>' $invision_markup = preg_replace( '/\[\/CODE\]/' , '</code></pre>' , $invision_markup ); // Replace '[quote:XXXXXXX]' with '<blockquote>' $invision_markup = preg_replace( '/\[quote:(.*?)\]/' , '<blockquote>' , $invision_markup ); // Replace '[quote="$1"]' with '<em>@$1 wrote:</em><blockquote>' $invision_markup = preg_replace( '/\[quote="(.*?)":(.*?)\]/' , '<em>@$1 wrote:</em><blockquote>' , $invision_markup ); // Replace '[/quote:XXXXXXX]' with '</blockquote>' $invision_markup = preg_replace( '/\[\/quote:(.*?)\]/' , '</blockquote>' , $invision_markup ); // Replace '[twitter]$1[/twitter]' with '<a href="https://twitter.com/$1">@$1</a>" $invision_markup = preg_replace( '/\[twitter\](.*?)\[\/twitter\]/' , '<a href="https://twitter.com/$1">@$1</a>' , $invision_markup ); // Replace '[member='username']' with '@username" $invision_markup = preg_replace( '/\[member=\'(.*?)\'\]/' , '@$1 ' , $invision_markup ); // Replace '[media]' with '' $invision_markup = preg_replace( '/\[media\]/' , '' , $invision_markup ); // Replace '[/media]' with '' $invision_markup = preg_replace( '/\[\/media\]/' , '' , $invision_markup ); // Replace '[list:XXXXXXX]' with '<ul>' $invision_markup = preg_replace( '/\[list\]/' , '<ul>' , $invision_markup ); // Replace '[list=1:XXXXXXX]' with '<ul>' $invision_markup = preg_replace( '/\[list=1\]/' , '<ul>' , $invision_markup ); // Replace '[*:XXXXXXX]' with '<li>' $invision_markup = preg_replace( '/\[\*\](.*?)\<br \/\>/' , '<li>$1</li>' , $invision_markup ); // Replace '[/list:u:XXXXXXX]' with '</ul>' $invision_markup = preg_replace( '/\[\/list\]/' , '</ul>' , $invision_markup ); // Replace '[hr]' with '<hr>" $invision_markup = preg_replace( '/\[hr\]/' , '<hr>' , $invision_markup ); // Replace '[font=XXXXXXX]' with '' $invision_markup = preg_replace( '/\[font=(.*?)\]/' , '' , $invision_markup ); // Replace '[/font]' with '' $invision_markup = preg_replace( '/\[\/font\]/' , '' , $invision_markup ); // Replace any Invision smilies from path '/sp-resources/forum-smileys/sf-smily.gif' with the equivelant WordPress Smilie $invision_markup = preg_replace( '/\<img src=(.*?)EMO\_DIR(.*?)bbc_emoticon(.*?)alt=\'(.*?)\' \/\>/' , '$4' , $invision_markup ); $invision_markup = preg_replace( '/\:angry\:/' , ':mad:' , $invision_markup ); $invision_markup = preg_replace( '/\:mellow\:/' , ':neutral:' , $invision_markup ); $invision_markup = preg_replace( '/\:blink\:/' , ':eek:' , $invision_markup ); $invision_markup = preg_replace( '/B\)/' , ':cool:' , $invision_markup ); $invision_markup = preg_replace( '/\:rolleyes\:/' , ':roll:' , $invision_markup ); $invision_markup = preg_replace( '/\:unsure\:/' , ':???:' , $invision_markup ); // Now that Invision custom HTML has been stripped put the cleaned HTML back in $field $field = $invision_markup ; require_once ( bbpress()->admin->admin_dir . 'parser.php' ); $bbcode = BBCode::getInstance(); $bbcode ->enable_smileys = false; $bbcode ->smiley_regex = false; return html_entity_decode( $bbcode ->Parse( $field ) ); } |
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.