本文整理汇总了PHP中Tribe__Events__Main::debug方法的典型用法代码示例。如果您正苦于以下问题:PHP Tribe__Events__Main::debug方法的具体用法?PHP Tribe__Events__Main::debug怎么用?PHP Tribe__Events__Main::debug使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Tribe__Events__Main
的用法示例。
在下文中一共展示了Tribe__Events__Main::debug方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: doField
/**
* Determines how to handle this field's creation
* either calls a callback function or runs this class' course of action
* logs an error if it fails
*
* @return void
*/
public function doField()
{
if ($this->conditional) {
if ($this->display_callback && is_callable($this->display_callback)) {
// if there's a callback, run it
call_user_func($this->display_callback);
} elseif (in_array($this->type, $this->valid_field_types)) {
// the specified type exists, run the appropriate method
$field = call_user_func(array($this, $this->type));
// filter the output
$field = apply_filters('tribe_field_output_' . $this->type, $field, $this->id, $this);
echo apply_filters('tribe_field_output_' . $this->type . '_' . $this->id, $field, $this->id, $this);
} else {
// fail, log the error
Tribe__Events__Main::debug(__('Invalid field type specified', 'the-events-calendar'), $this->type, 'notice');
}
}
}