mc_output_is_visible - joedolson/my-calendar GitHub Wiki
Filter whether any given piece of information should be output.
Auto-generated Example
add_filter(
'mc_output_is_visible',
function(
bool $return,
string $feature,
string $type,
object|boolean $event
) {
// Your code here.
return $return;
},
10,
4
);
Parameters
bool$returnShould this piece of data be output.string$featureFeature key.string$typeType of view.object|boolean$eventEvent object if in event context.
Returns
bool
Files
apply_filters( 'mc_output_is_visible', $return, $feature, $type, $event )