当前位置: 首页>>代码示例>>PHP>>正文


PHP dropbox::add_arrays方法代码示例

本文整理汇总了PHP中dropbox::add_arrays方法的典型用法代码示例。如果您正苦于以下问题:PHP dropbox::add_arrays方法的具体用法?PHP dropbox::add_arrays怎么用?PHP dropbox::add_arrays使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在dropbox的用法示例。


在下文中一共展示了dropbox::add_arrays方法的6个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。

示例1: dropbox

        if ($has_write_permission) {
            $dropbox = new dropbox();
            $dropbox->add_arrays($hours, $hours);
            $dropbox->print_dropbox('view_start_hour', $view['start_hour']);
        } else {
            echo $view['start_hour'];
        }
        ?>
	&nbsp;<?php 
        echo $sc_to;
        ?>
&nbsp;
	<?php 
        if ($has_write_permission) {
            $dropbox = new dropbox();
            $dropbox->add_arrays($hours, $hours);
            $dropbox->print_dropbox('view_end_hour', $view['end_hour']);
        } else {
            echo $view['end_hour'];
        }
        ?>
	</td>
</tr>
<tr>
	<td valign><?php 
        echo $sc_calendars;
        ?>
:</td>
	<td>
	<table border="0">
	<tr>
开发者ID:BackupTheBerlios,项目名称:hpt-obm-svn,代码行数:31,代码来源:view.php

示例2: dropbox

 print_head();
 if (isset($feedback)) {
     echo $feedback . '<br /><br />';
 }
 ?>
 <input type="hidden" name="task" value="theme" />
 Select the default theme for Group-Office and whether users are allowed to change the theme or not.
 <br /><br />
 <table style="border-width: 0px;font-family: Arial,Helvetica; font-size: 12px;">
 <tr>
 <td>Default theme:</td>
 <td>
 <?php 
 $themes = $GO_THEME->get_themes();
 $dropbox = new dropbox();
 $dropbox->add_arrays($themes, $themes);
 $dropbox->print_dropbox("theme", $GO_CONFIG->theme);
 ?>
 </td>
 </tr>
 <tr>
 <td align="right">Allow:</td>
 <td>
 <?php 
 $allow_themes = isset($_POST['allow_themes']) ? $_POST['allow_themes'] : $GO_CONFIG->allow_themes;
 $allow_themes = $allow_themes ? 'true' : 'false';
 $dropbox = new dropbox();
 $dropbox->add_value('true', 'Yes');
 $dropbox->add_value('false', 'No');
 $dropbox->print_dropbox('allow_themes', $allow_themes);
 ?>
开发者ID:BackupTheBerlios,项目名称:hpt-obm-svn,代码行数:31,代码来源:install.php

示例3: checkbox

echo '</td></tr>';
echo '<tr><td colspan="2">&nbsp;</td></tr>';
echo '<tr><td>';
$checkbox = new checkbox('completed', 'true', $cal_completed . ':', $todo['completed'], false, 'onclick="javascript:disable_completion_time(!this.checked);"');
echo '</td><td>';
echo '<table border="0" cellpadding="0" cellspacing="0"><tr><td>';
$disabled = $todo['completed'] ? '' : 'disabled';
$status_disabled = $todo['completed'] ? 'disabled' : '';
$datepicker->print_date_picker('completion_date', $_SESSION['GO_SESSION']['date_format'], $todo['completion_date'], '', '', '', !$todo['completed']);
echo '</td><td>&nbsp;&nbsp;';
$dropbox = new dropbox();
$dropbox->add_arrays($hours, $hours);
$dropbox->print_dropbox("completion_hour", $todo['completion_hour'], $disabled);
echo '&nbsp;:&nbsp;';
$dropbox = new dropbox();
$dropbox->add_arrays($mins, $mins);
$dropbox->print_dropbox("completion_min", $todo['completion_min'], $disabled);
echo '&nbsp;&nbsp;&nbsp;&nbsp;';
$dropbox = new dropbox();
for ($i = 0; $i < 101; $i = $i + 10) {
    $dropbox->add_value($i, "{$i}");
}
$dropbox->print_dropbox('status', $todo['status'], $status_disabled);
echo '&nbsp;&nbsp;';
echo $cal_percent_completed;
echo '</td></tr></table>';
echo '<tr><td colspan="2">&nbsp;</td></tr>';
echo '<tr><td nowrap>' . $sc_background . ':&nbsp;</td><td>';
$color_selector = new color_selector();
$color_selector->add_color('FFFFCC');
$color_selector->add_color('FF6666');
开发者ID:BackupTheBerlios,项目名称:hpt-obm-svn,代码行数:31,代码来源:todo.php

示例4: dropbox

 }
 $dropbox->print_dropbox('repeat_every', $event['repeat_every']);
 $dropbox = new dropbox();
 $dropbox->add_value('0', $sc_types1[REPEAT_NONE]);
 $dropbox->add_value('1', $sc_types1[REPEAT_DAILY]);
 $dropbox->add_value('2', $sc_types1[REPEAT_WEEKLY]);
 $dropbox->add_value('3', $sc_types1[REPEAT_MONTH_DATE]);
 $dropbox->add_value('4', $sc_types1[REPEAT_MONTH_DAY]);
 $dropbox->add_value('5', $sc_types1[REPEAT_YEARLY]);
 $dropbox->print_dropbox('repeat_type', $event['repeat_type'], 'onclick="javascript:toggle_repeat(this.value);"');
 echo '</td></tr>';
 echo '<tr><td>' . $sc_at_days . ':</td><td>';
 echo '<table border="0" cellpadding="0" cellspacing="0"><tr>';
 echo '<td>';
 $dropbox = new dropbox();
 $dropbox->add_arrays(array(1, 2, 3, 4), $month_times);
 $dropbox->print_dropbox("month_time", $event['month_time']);
 echo '</td>';
 $day_data_field[0] = 'sun';
 $day_data_field[1] = 'mon';
 $day_data_field[2] = 'tue';
 $day_data_field[3] = 'wed';
 $day_data_field[4] = 'thu';
 $day_data_field[5] = 'fri';
 $day_data_field[6] = 'sat';
 $day_number = $_SESSION['GO_SESSION']['first_weekday'];
 for ($i = 0; $i < 7; $i++) {
     if ($day_number == 7) {
         $day_number = 0;
     }
     echo '<td>';
开发者ID:BackupTheBerlios,项目名称:hpt-obm-svn,代码行数:31,代码来源:event.php

示例5: dropbox

            $j++;
            $cate_arr[] = $attach->f('name');
            $cate_id_arr[] = $attach->f('attach_cate_id');
            $text_arr[$j][] = $sc_no_select;
            $value_arr[$j][] = 0;
            $price_arr[$j][] = 0;
        }
        $text_arr[$j][] = $attach->f('attachment_name');
        $value_arr[$j][] = $attach->f('attachment_id');
        $price_arr[$j][] = $attach->f('attachment_price');
        $VAT_arr[$j][] = $attach->f('attachment_VAT');
    }
    for ($j = 0; $j < count($cate_arr); $j++) {
        $dropbox = new dropbox();
        $pricebox = new dropbox();
        $dropbox->add_arrays($value_arr[$j], $text_arr[$j]);
        for ($k = 0; $k < count($price_arr[$j]); $k++) {
            $pricebox->add_value($price_arr[$j][$k], sprintf("%s ", $price_arr[$j][$k]));
        }
        $pid = $value_arr[$j];
        $pprice = $price_arr[$j][0];
        $pVAT = $VAT_arr[$j][0];
        $pamount = $pprice * $pquantity + $pprice * $pquantity * $pVAT / 100;
        $psumamount += $pamount;
        $ptotal += $pprice * $pquantity;
        ?>
			
	<tr>
      <td align="center">&nbsp;  </td>
	  <td nowrap>
	  	&nbsp;&nbsp;-&nbsp;<?php 
开发者ID:BackupTheBerlios,项目名称:hpt-obm-svn,代码行数:31,代码来源:edit_order.tmp.php

示例6: showrecords


//.........这里部分代码省略.........
        $t_assigned_name = Security::whatsmyname($t_assigned);
        if (Security::is_action_allowed("change_subject", 0, $acl_write)) {
            $tts_lang_subject_value = "<input name=t_subject value=\"" . Security::sqlsecure($t_subject) . "\" class=textbox max=80 size=80>";
        } else {
            $tts_lang_subject_value = "<input name=t_subject value=\"" . Security::sqlsecure($t_subject) . "\" class=textbox max=80 size=80 readonly>";
        }
        $tts_lang_description_value = "<textarea name=t_description cols=80 rows=12 class=textbox readonly>" . Security::sqlsecure($t_description) . "</textarea>";
        $tts_lang_change_date_VALUE = date("{$_SESSION['GO_SESSION']['date_format']} H:i", $change_date);
        $tts_lang_email = "Email {$tts_lang_issuer}: <input type=checkbox name=t_email_issuer value=1><br>Email {$tts_lang_assigned} <input type=checkbox name=t_email_agent value=1>";
        $post_changes = "<form name=\"change_status\" method=\"POST\" action=\"change_ticket.php?Ticket_Number={$Ticket_Number}&func=change_status\">";
        if (Security::is_action_allowed("change_project", 0, $acl_write)) {
            $project_name = select_option("{$project_id}", fill_select("project_id", "{$prefix}{$hlpdsk_prefix}_projects", "project_id", "project_name", " order by project_id"));
            $tts_lang_project_value = "{$project_name}";
        } else {
            $project_name = Security::htmlsecure(get_cross_value("{$prefix}{$hlpdsk_prefix}_projects", "project_name", " where project_id='{$project_id}'"));
            $tts_lang_project_value = "{$project_name}";
        }
        $fullname = opentts::get_fullname($t_assigned);
        if (Security::is_action_allowed("change_assigned", 0, $acl_write)) {
            $select = new select('user', 'change_status', 't_assigned', $t_assigned);
            $tts_lang_assign_to = $select->get_link("{$tts_lang_assign_to}");
            $tts_lang_assign_to_value = $select->get_field();
        } else {
            $tts_lang_assign_to_value = "{$fullname}";
        }
        if (Security::is_action_allowed("change_end_date", 0, $acl_write)) {
            $time = strtotime($end_date);
            #$end_date_d_m_y=date("Y/m/d",$time);
            $end_date_h = date("H", $time);
            $end_date_i = date("i", $time);
            $today = date($_SESSION['GO_SESSION']['date_format'], $time);
            $end_date = $datepicker->get_date_picker('end_date_d_m_y', $_SESSION['GO_SESSION']['date_format'], $today);
            $dropbox = new dropbox();
            $dropbox->add_arrays($hours, $hours);
            $end_date .= '<td>';
            $end_date_h_value = $dropbox->get_dropbox("end_date_h", $end_date_h);
            $dropbox = new dropbox();
            $dropbox->add_arrays($mins, $mins);
            $end_date_i_value = $dropbox->get_dropbox("end_date_i", $end_date_i);
            if ($htmldirection == 'rtl') {
                $end_date .= "{$end_date_i_value}:{$end_date_h_value}";
            } else {
                $end_date .= "{$end_date_h_value}:{$end_date_i_value}";
            }
            $tts_lang_end_date_value = "{$end_date}&nbsp;";
        } else {
            $tts_lang_end_date_value = "{$end_date}";
        }
        if (Security::is_action_allowed("change_complete", 0, $acl_write)) {
            $_PERCENTAGE_COMPLETE_VALUE = select_option("{$complete}", "{$select_complete}");
        } else {
            $_PERCENTAGE_COMPLETE_VALUE = "{$complete} %";
        }
        if (Security::is_action_allowed("change_due_date", 0, $acl_write)) {
            $time = strtotime($due_date);
            $due_date_d_m_y = date($_SESSION['GO_SESSION']['date_format'], $time);
            $due_date_h = date("H", $time);
            $due_date_i = date("i", $time);
            $today = date($_SESSION['GO_SESSION']['date_format'], $time);
            $due_date = $datepicker->get_date_picker('due_date_d_m_y', $_SESSION['GO_SESSION']['date_format'], $today, '', '', 'onchange="javascript:document.change_status.end_date_d_m_y.value=this.value;"');
            $dropbox = new dropbox();
            $dropbox->add_arrays($hours, $hours);
            $due_date .= '<td>';
            $due_date_h_value = $dropbox->get_dropbox("due_date_h", $due_date_h, 'onchange="javascript:update_end_hour(this.value);"');
            $dropbox = new dropbox();
            $dropbox->add_arrays($mins, $mins);
开发者ID:BackupTheBerlios,项目名称:hpt-obm-svn,代码行数:67,代码来源:showline.php


注:本文中的dropbox::add_arrays方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。