本文整理汇总了PHP中FlexicontentFields::getFilterCreationTimes方法的典型用法代码示例。如果您正苦于以下问题:PHP FlexicontentFields::getFilterCreationTimes方法的具体用法?PHP FlexicontentFields::getFilterCreationTimes怎么用?PHP FlexicontentFields::getFilterCreationTimes使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类FlexicontentFields
的用法示例。
在下文中一共展示了FlexicontentFields::getFilterCreationTimes方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: implode
// ***************************************
$app = JFactory::getApplication();
$_view = JRequest::getWord('view','flexicontent');
$_layout = JRequest::getWord('layout','');
if ($task) $_msg = ' (TASK: '.(!FLEXI_J16GE ? $ctrlname.'.' : '').$task.')';
else $_msg = ' (VIEW: ' .$_view. ($_layout ? ' -- LAYOUT: '.$_layout : '') .')';
// **************************************
// Various Partial time performance stats
// **************************************
$fields_render_total=0;
$fields_render_times = FlexicontentFields::getFieldRenderTimes($fields_render_total);
$filters_creation_total = 0;
$filters_creation_times = FlexicontentFields::getFilterCreationTimes($filters_creation_total);
$fc_jprof->mark('END: FLEXIcontent component: '.$_msg);
$msg = '<span style="font-family:tahoma!important; font-size:11px!important;">'. implode('<br/>', $fc_jprof->getbuffer()) .'</span>';
$msg .= '<span style="font-family:tahoma!important; font-size:11px!important;">';
if (isset($fc_run_times['initialize_component']))
$msg .= sprintf('<br/>-- [Initialize component: %.2f s] ', $fc_run_times['initialize_component']/1000000);
if (isset($fc_run_times['test_time']))
$msg .= sprintf('<br/>-- [Time of TEST part: %.2f s] ', $fc_run_times['test_time']/1000000);
if (isset($fc_run_times['item_store_prepare']))
$msg .= sprintf('<br/>-- [Prepare item store: %.2f s] ', $fc_run_times['item_store_prepare']/1000000);