本文整理汇总了PHP中dropbox::is_in_dropbox方法的典型用法代码示例。如果您正苦于以下问题:PHP dropbox::is_in_dropbox方法的具体用法?PHP dropbox::is_in_dropbox怎么用?PHP dropbox::is_in_dropbox使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类dropbox
的用法示例。
在下文中一共展示了dropbox::is_in_dropbox方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: while
$x = 1;
while ($cal->get_calendar_by_name($new_cal_name)) {
$new_cal_name = $cal_name . ' (' . $x . ')';
$x++;
}
$calendar_id = $cal->add_calendar($GO_SECURITY->user_id, addslashes($new_cal_name), 7, 20);
$dropbox->add_value($calendar_id, $new_cal_name);
} else {
$calendar_id = $first_writable_cal;
}
}
if (count($event['calendars']) == 0) {
$event['calendars'][] = $calendar_id;
}
for ($i = 0; $i < count($event['calendars']); $i++) {
if (!$dropbox->is_in_dropbox($event['calendars'][$i])) {
echo '<input type="hidden" name="calendars[]" value="' . $event['calendars'][$i] . '" />';
}
}
echo '<tr><td valign="top">' . $sc_put_in . ':</td>';
echo '<td><table border="0">';
$dropbox->print_dropbox('calendars[]', $event['calendars'], '', true, '5', '200');
echo '</table></td></tr>';
echo '<tr><td colspan="2">';
$button = new button($cmdOk, "javascript:save_event('true');");
echo ' ';
$button = new button($cmdApply, "javascript:save_event('false');");
echo ' ';
$button = new button($cmdSave, "javascript:document.event_form.emptyform.value='true';save_event('false');");
echo ' ';
if ($event_id > 0) {