本文整理匯總了PHP中cmb_Meta_Box::maybe_callback方法的典型用法代碼示例。如果您正苦於以下問題:PHP cmb_Meta_Box::maybe_callback方法的具體用法?PHP cmb_Meta_Box::maybe_callback怎麽用?PHP cmb_Meta_Box::maybe_callback使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類cmb_Meta_Box
的用法示例。
在下文中一共展示了cmb_Meta_Box::maybe_callback方法的1個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。
示例1: esc
/**
* Escape the value before output. Defaults to 'esc_attr()'
* @since 1.0.1
* @param mixed $meta_value Meta value
* @param mixed $func Escaping function (if not esc_attr())
* @return mixed Final value
*/
public static function esc($meta_value, $func = '')
{
$field = cmb_Meta_Box::$field;
// Check if the field has a registered escaping callback
$cb = cmb_Meta_Box::maybe_callback($field, 'escape_cb');
if (false === $cb) {
// If requesting NO escaping, return meta value
return $meta_value;
} elseif ($cb) {
// Ok, callback is good, let's run it.
return call_user_func($cb, $meta_value, $field);
}
// Or custom escaping filter can be used
$esc = apply_filters('cmb_types_esc_' . $field['type'], null, $meta_value, $field);
if (null !== $esc) {
return $esc;
}
// escaping function passed in?
$func = is_string($func) && !empty($func) ? $func : 'esc_attr';
$meta_value = !empty($meta_value) ? $meta_value : $field['default'];
return call_user_func($func, $meta_value);
}