We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
TypedData API was built to helper developer validate input value must match its schema:
<?php $schema = array('type' => 'constant'); $input = 'MENU_LOCAL_TASK'; $data = at_data($schema, $input); // Validate echo $data->validate($error) ? $data->getValue() : $error;