You appear to be a bot. Output may be restricted
Description
Usage
bw_alter_atts( $atts, $drop, $reCamelCase );
Parameters
- $atts
- ( mixed ) required –
- $drop
- ( mixed ) optional –
- $reCamelCase
- ( mixed ) optional –
Returns
voidSource
File name: oik/includes/bw_jquery.incLines:
1 to 9 of 9
function bw_alter_atts( $atts, $drop=null, $reCamelCase=null ) { if ( $drop ) { $atts = bw_unset_atts( $atts, $drop ); } if ( $reCamelCase ) { $atts = bw_recase_atts( $atts, $reCamelCase ); } return( $atts ); }View on GitHub View on Trac