You appear to be a bot. Output may be restricted
Description
Check for the selected API
Usage
_ca_checkforselected_api( $api, $count );
Parameters
- $api
- ( mixed ) required –
- $count
- ( mixed ) required –
Returns
voidSource
File name: oik-shortcodes/admin/oik-create-apis.phpLines:
1 to 9 of 9
function _ca_checkforselected_api( $api, $count ) { global $selected_api; if ( $selected_api ) { $selected = ( $api == $selected_api ) || ( $count >= $selected_api ); } else { $selected = true; } return( $selected ); }View on GitHub