本文整理匯總了PHP中CSpan::show方法的典型用法代碼示例。如果您正苦於以下問題:PHP CSpan::show方法的具體用法?PHP CSpan::show怎麽用?PHP CSpan::show使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類CSpan
的用法示例。
在下文中一共展示了CSpan::show方法的1個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。
示例1: addPopupValues
$scroll_div = new CDiv();
$scroll_div->setAttribute('id', 'scrollbar_cntr');
$historyWidget->addFlicker($scroll_div, CProfile::get('web.history.filter.state', 1));
}
$historyWidget->show();
} else {
$span = new CSpan(null, 'textblackwhite');
foreach ($ptData['header'] as $bnum => $text) {
$span->addItem(array(new CJSscript($text), BR()));
}
$pre = new CTag('pre', true);
foreach ($ptData['body'] as $bnum => $text) {
$pre->addItem(new CJSscript($text));
}
$span->addItem($pre);
$span->show();
}
?>
<script type="text/javascript">
//<!--<![CDATA[
function addPopupValues(list){
if(!isset('object', list)){
throw("Error hash attribute 'list' doesn't contain 'object' index");
return false;
}
var favorites = {'itemid': 1};
if(isset(list.object, favorites)){
for(var i=0; i < list.values.length; i++){
if(!isset(i, list.values) || empty(list.values[i])) continue;