本文整理匯總了PHP中calendar::get_view_calendars方法的典型用法代碼示例。如果您正苦於以下問題:PHP calendar::get_view_calendars方法的具體用法?PHP calendar::get_view_calendars怎麽用?PHP calendar::get_view_calendars使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類calendar
的用法示例。
在下文中一共展示了calendar::get_view_calendars方法的1個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。
示例1: while
while ($cal->next_record()) {
if (!isset($views_subscribed)) {
$dropbox->add_value('view:' . $cal->f('id'), $cal->f('name'));
} else {
if (in_array($cal->f('id'), $views_subscribed)) {
$dropbox->add_value('view:' . $cal->f('id'), $cal->f('name'));
}
}
}
}
$dropbox->print_dropbox("calendar_view_id", $calendar_view_id, 'onchange="javascript:change_calendar()"');
echo '</td></tr>';
if (isset($view) && $view) {
// echo '<tr><td><h3>'.$title.'</h3></td><td>';
echo '<tr><td><h3></h3></td><td>';
$calendars = $cal->get_view_calendars($view_id);
if (count($calendars) > 1) {
$dropbox = new dropbox();
$dropbox->add_value(true, $cal_view_merged);
$dropbox->add_value(false, $cal_view_emerged);
$dropbox->print_dropbox("merged_view", $merged_view, 'onchange="javascript:document.forms[0].submit()"');
}
echo '</td></tr>';
}
echo '</table>';
?>
</td>
<td> </td>
<td>
<?php