Lines:
1 to 100 of 259
<?php // (C) Copyright Bobbing Wide 2009-2021 if ( !defined( "BOBBFUNC_INCLUDED" ) ) { define( "BOBBFUNC_INCLUDED", "3.4.2" ); /** * HTML output library functions * * Library: bobbfunc * Depends: oik_boot, bwtrace, class-bobbcomp * Deferred dependencies: oik-sc-help * Provides: bobbfunc * * These functions were part of the oik base plugin in bobbfunc.inc and bobbcomp.inc * Some functions may now be unused. This hasn't yet been confirmed. * * */ /* function bw_oik_version() – Return the plugin version of the oik base plugin */ //require_once( "oik_boot.php" ); /* Don't use oik_require here */ /* function bw_echo() – bw API partial equivalent of PHP’s output buffering */ /* function bw_flush() – Use bw_flush() to echo the contents of $bwecho then empty it */ /* function bw_ret() – Use bw_ret() to return the contents of $bwecho, leaving the global value as NULL */ /* function bw_push() – Push then empty the current $bwecho buffer */ /* function bw_pop() – Restore the previous $bwecho buffer */ /* function bw_do_shortcode() – Perform nested shortcode expansion */ /* function retimage() – Return an image tag */ /* function kv() – Create a keyword value pair */ /* function atitle() – Format a sanitized title= parameter */ /* function aname() – Create an anchor tag for linking within a page */ /* function _alink() – Create a translatable link */ /* function alink() – Create a link */ /* function retlink() – Return a well formed link */ /* function retstag() – Return an HTML opening tag */ /* function nullretstag() – Return a start tag if the class is not null */ /* function stag() – Output an HTML opening tag */ /* function sol() – Start an ordered list */ /* function sul() – Start an unordered list */ /* function sdiv() – Start a div */ /* function eol() – End an ordered list */ /* function eul() – End an unordered list */ /* function ediv() – End a div */ /* function sediv() – Create a dummy div which may be used for placing graphics using background images in CSS */ /* function ep() – End a paragraph (p) tag */ /* function nullretetag() – Return an end tag if the class is not null */ /* function retetag() – Return an end tag */ /* function etag() – Output an end tag */ /* function sp() – Start a paragraph */ /* function p() – Output a paragraph of translatable text */ /* function p_() – Output a paragraph of translated text */ /* function hn() – Output a heading of translated text */ /* function h1() – */ /* function h2() – */ /* function h3() – */ /* function h4() – */ /* function h5() – */ /* function h6() – */ /* function bwt() – Output some translated text */ /* function e() – Outputs some translated / non-translatable text */ /* function br() – Produce a break tag with optional text to follow */ /* function hr() – Produce a horizontal rule tag */View on GitHub View on Trac