You appear to be a bot. Output may be restricted
Description
Compare a param's method result with the given value
Usage
oikai_compare_value( $match, $param, $method, $value );
Parameters
- $match
- ( mixed ) required –
- $param
- ( mixed ) required –
- $method
- ( mixed ) required –
- $value
- ( mixed ) required –
Returns
void
Source
File name: oik-shortcodes/admin/oik-apitype.php
Lines:
1 to 10 of 10
function oikai_compare_value( $match, $param, $method, $value ) { if ( $match ) { $got = $param->$method(); if ( $got != $value ) { $match = false; // echo "$method got: $got value: $value false"; } } return( $match ); }