Description
Handle the last parameter to a hook definition or invocationIf we were processing the array 'operator' then we now turn that off indicating that we're done with array logic processing. Here we assume that we don't need to count open and closed parentheses.
Usage
oikai_handle_char_rparen( $key, $char, $tokens );Parameters
- $key
- ( mixed ) required –
- $char
- ( mixed ) required –
- $tokens
- ( mixed ) required –
Returns
voidSource
File name: oik-shortcodes/shortcodes/oik-api-importer.phpLines:
1 to 7 of 7
function oikai_handle_char_rparen( $key, $char, &$tokens ) { $operator = bw_context( "operator" ); if ( "array" == $operator ) { bw_context( "operator", false ); } oikai_handle_char_comma( $key, $char, $tokens ); }View on GitHub
Called by
Invoked by
Calls
1 to 2 of 2
