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


PHP dropbox::print_dropbox方法代码示例

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


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

示例1: dropbox

 }
 if ($ab_settings['sort_contacts_order'] == "DESC") {
     $image_string = '&nbsp;<img src="' . $GO_THEME->images['arrow_down'] . '" border="0" />';
     $new_sort_order = "ASC";
 } else {
     $image_string = '&nbsp;<img src="' . $GO_THEME->images['arrow_up'] . '" border="0" />';
     $new_sort_order = "DESC";
 }
 echo '<input type="hidden" value="' . $new_sort_order . '" name="new_sort_order" />';
 if ($ab1->get_subscribed_addressbooks($GO_SECURITY->user_id) > 1) {
     echo '<table border="0" cellpadding="0" cellspacing="0"><tr><td>' . $ab_addressbook . ':</td><td>';
     $subscribed_addressbooks = new dropbox();
     while ($ab1->next_record()) {
         $subscribed_addressbooks->add_value($ab1->f('id'), $ab1->f('name'));
     }
     $subscribed_addressbooks->print_dropbox('addressbook_id', $addressbook_id, 'onchange="javascript:change_addressbook()"');
     echo '</td></tr></table>';
 } else {
     echo '<input type="hidden" name="addressbook_id" value="' . $addressbook_id . '" />';
 }
 echo "<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\">\n";
 echo '<tr><td class="TableHead2">&nbsp;</td>';
 if ($multiselect) {
     echo '<td class="TableHead2" width="16"><input type="checkbox" name="dummy" value="dummy" onclick="javascript:invert_selection()" /></td>';
 }
 echo "<td class=\"TableHead2\" nowrap><a class=\"TableHead2\" href=\"javascript:sort('name')\">" . $strName;
 if ($ab_settings['sort_contacts_field'] == "name") {
     echo $image_string;
 }
 echo "</a></td>\n";
 echo "<td class=\"TableHead2\" nowrap><a class=\"TableHead2\" href=\"javascript:sort('email')\">" . $strEmail;
开发者ID:BackupTheBerlios,项目名称:hpt-obm-svn,代码行数:31,代码来源:select.php

示例2: dropbox

	<tr><td>&nbsp;</td></tr>
	<tr>
		<td nowrap align="right">
			<?php 
echo $reg_language;
?>
:&nbsp;
		</td>
		<td>
			<?php 
$dropbox = new dropbox();
$languages = $GO_LANGUAGE->get_languages();
while ($language = array_shift($languages)) {
    $dropbox->add_value($language['code'], $language['description']);
}
$dropbox->print_dropbox("language", $GO_CONFIG->language);
?>
		</td>
	</tr>
	</table>
	</td>
</tr>
<tr>
<td colspan="2">
<?php 
$button = new button($cmdOk, 'javascript:document.forms[0].submit()');
echo '&nbsp;&nbsp;';
$button = new button($cmdReset, 'javascript:document.forms[0].reset()');
?>
</td>
</tr>
开发者ID:BackupTheBerlios,项目名称:hpt-obm-svn,代码行数:31,代码来源:register.php

示例3: delete_status

//style="width: 350px;"
$db->query('SELECT * FROM ab_categories WHERE parent_id = "0" ORDER BY category');
$count = $db->num_rows();
$catalog = new dropbox();
$catalog_name = '';
$catalog->add_value('0', $ab_TOP);
while ($db->next_record()) {
    if ($cat_id == 0) {
        $cat_id = $db->f('category_id');
    }
    $catalog->add_value($db->f('category_id'), $db->f('category'));
    if ($cat_id == $db->f('category_id')) {
        $catalog_name = $db->f('category');
    }
}
$catalog->print_dropbox('parent', $selected, '', false, '10', '200');
echo '<br><br>&nbsp;&nbsp;';
$button = new button($cmdAdd, 'javascript:add_status()');
echo '&nbsp;&nbsp;';
$button = new button($cmdCapnhat, 'javascript:update_status()');
echo '&nbsp;&nbsp;';
$button = new button($cmdClose, "javascript:document.location='" . $return_to . "'");
?>

<script type="text/javascript">

function delete_status(msg, id)
{
  	if (div_confirm(msg)) {
    	document.forms[0].task.value = 'delete_status';
	    document.forms[0].id.value = id;
开发者ID:BackupTheBerlios,项目名称:hpt-obm-svn,代码行数:31,代码来源:categories.php

示例4: dropbox

 </tr>
 <tr>
 <td>
 How many users do you have in Group-Office?
 <?php 
 $dropbox = new dropbox();
 $dropbox->add_value('&lt; 5', '&lt; 5');
 $dropbox->add_value('20-30', '20-30');
 $dropbox->add_value('30-50', '30-50');
 $dropbox->add_value('50-75', '50-75');
 $dropbox->add_value('75-100', '75-100');
 $dropbox->add_value('100-150', '100-150');
 $dropbox->add_value('150-200', '150-200');
 $dropbox->add_value('300-400', '300-400');
 $dropbox->add_value('&gt; 400', '&gt; 400');
 $dropbox->print_dropbox('users', $users);
 ?>
 </td>
 </tr>
 <tr>
 <td>
 If you would like to recieve information about Group-Office Professional
 please fill in a name and an e-mail address where Intermesh may contact you:<br />
 <?php 
 $email = isset($email) ? $email : $GO_CONFIG->webmaster_email;
 $name = isset($name) ? $name : '';
 ?>
 <table style="border-width: 0px;font-family: Arial,Helvetica; font-size: 12px;">
 <tr>
 <td>E-mail:</td>
 <td><input type="text" size="50" name="email" value="<?php 
开发者ID:BackupTheBerlios,项目名称:hpt-obm-svn,代码行数:31,代码来源:install.php

示例5: button

$catedrop->add_value(0, $sc_all);
while ($pro->next_record()) {
    $catedrop->add_value($pro->f('category_id'), $pro->f('category_name'));
}
?>
<table width="30%"  border="0" cellspacing="0" cellpadding="0">
  <tr>
    <td><?php 
echo $sc_search_on;
?>
</td>
    <td>
<?php 
$fielddrop->print_dropbox('field_search', '');
echo ' ' . $sc_in . ' ';
$catedrop->print_dropbox('cate_search', '');
?>
	
	</td>
  </tr>
  <tr>
    <td><?php 
echo $sc_search_phrase;
?>
</td>
    <td><input type="text" name="phrase_search"></td>
  </tr>
</table>
<?php 
$button = new button($cmdSearch, "javascript:click_but(frmProSearch,'search','false')");
?>
开发者ID:BackupTheBerlios,项目名称:hpt-obm-svn,代码行数:31,代码来源:product_search.tmp.php

示例6: button

         $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 '&nbsp;&nbsp;';
 $button = new button($cmdApply, "javascript:save_event('false');");
 echo '&nbsp;&nbsp;';
 $button = new button($cmdSave, "javascript:document.event_form.emptyform.value='true';save_event('false');");
 echo '&nbsp;&nbsp;';
 if ($event_id > 0) {
     $button = new button($cal_export, "document.location='export.php?event_id={$event_id}';");
     echo '&nbsp;&nbsp;';
 }
 $button = new button($cmdCancel, "javascript:document.location='{$return_to}'");
 echo '</td></tr>';
 echo '</table>';
开发者ID:BackupTheBerlios,项目名称:hpt-obm-svn,代码行数:31,代码来源:event.php

示例7: smartstrip

 $dropbox->add_value('last_name', $strLastName);
 $dropbox->add_value('email', $strEmail);
 $dropbox->add_value('company', $strCompany);
 $dropbox->add_value('department', $strDepartment);
 $dropbox->add_value('function', $strFunction);
 $dropbox->add_value('address', $strAddress);
 $dropbox->add_value('city', $strCity);
 $dropbox->add_value('zip', $strZip);
 $dropbox->add_value('state', $strState);
 $dropbox->add_value('country', $strCountry);
 $dropbox->add_value('work_address', $strWorkAddress);
 $dropbox->add_value('work_cip', $strWorkZip);
 $dropbox->add_value('work_city', $strWorkCity);
 $dropbox->add_value('work_state', $strWorkState);
 $dropbox->add_value('work_country', $strWorkCountry);
 $dropbox->print_dropbox('search_field', $search_field);
 echo '</td><td><input type="text" name="query" size="31" maxlength="255" class="textbox" value="';
 if (isset($_REQUEST['query'])) {
     echo smartstrip($_REQUEST['query']);
 }
 echo '"></td></tr>';
 echo '<tr><td colspan="2">';
 echo '<table><tr><td>';
 $button = new button($cmdSearch, 'javascript:add_users()');
 echo '</td><td>';
 $button = new button($cmdShowAll, "javascript:document.group.query.value='';add_users()");
 echo '</td><td>';
 $button = new button($cmdCancel, 'javascript:return_to_group()');
 echo '</td></tr></table>';
 echo '</td></tr></table>';
 if (isset($_REQUEST['query'])) {
开发者ID:BackupTheBerlios,项目名称:hpt-obm-svn,代码行数:31,代码来源:group.php

示例8: isset

" maxlength="100" size="30" />
			</td>
			<?php 
    $delimiter = isset($delimiter) ? $delimiter : '/';
    echo '<input type="hidden" name="delimiter" value="' . $delimiter . '" />';
    echo '<td>' . $ml_inside . '</td>';
    echo '<td>';
    $parent_folder_name = isset($parent_folder_name) ? $parent_folder_name : '';
    $dropbox = new dropbox();
    $dropbox->add_value($account['mbroot'], $ml_root_mailbox);
    for ($i = 0; $i < $mcount; $i++) {
        if ($go_mailboxes[$i]['attributes'] != LATT_NOINFERIORS) {
            $dropbox->add_value($go_mailboxes[$i]['name'], str_replace('INBOX' . $go_mailboxes[$i]['delimiter'], '', $go_mailboxes[$i]['name']));
        }
    }
    $dropbox->print_dropbox('parent_folder_name', $parent_folder_name);
    echo '</td>';
    ?>
			<td>
			<?php 
    $button = new button($cmdOk, "javascript:_save('create_folder', 'false')");
    ?>
			</td>
		</tr>
		</table>
		<br />
		<table border="0" cellpadding="0" cellspacing="0">
		<tr>
			<td><h3><?php 
    echo $strName;
    ?>
开发者ID:BackupTheBerlios,项目名称:hpt-obm-svn,代码行数:31,代码来源:folders.php

示例9: dropbox

            echo '</td></tr>';
            echo '<tr><td>' . $pm_status . '</td><td><b>';
            $status = $pm_status_values[$projects->f('status')];
            echo $status . '</b></td></tr>';
            echo '<tr><td>' . $pm_progress . ':</td><td>' . $progress . '%</td></tr>';
            echo '<tr><td>' . $pm_budget . ':</td><td>' . $budget . ' ' . $_SESSION['GO_SESSION']['currency'] . '</td></tr>';
        }
        $fee_count = $projects->get_fees();
        if ($fee_count > 0) {
            echo '<tr><td>' . $pm_fee . '</td><td>';
            $dropbox = new dropbox();
            while ($projects->next_record()) {
                $dropbox->add_value($projects->f('id'), $projects->f('name') . ' (' . htmlentities($_SESSION['GO_SESSION']['currency']) . '&nbsp;' . number_format($projects->f('value'), 2, $_SESSION['GO_SESSION']['decimal_seperator'], $_SESSION['GO_SESSION']['thousands_seperator']) . '&nbsp;/&nbsp;' . $projects->f('time') . '&nbsp;' . $pm_mins . ')');
            }
            $disabled = $project_id < 1 || $project['user_id'] == $GO_SECURITY->user_id ? '' : 'disabled';
            $dropbox->print_dropbox('fee_id', $fee_id, $disabled);
        } else {
            echo '<input type="hidden" name="fee_id" value="0" />';
        }
        if ($project_id > 0) {
            echo '<tr><td>' . $strOwner . ':</td><td>' . show_profile($project['user_id']) . '</td></tr>';
            echo '<tr><td>' . $strCreatedAt . ':</td><td>' . date($_SESSION['GO_SESSION']['date_format'] . ' ' . $_SESSION['GO_SESSION']['time_format'], $project['ctime'] + $_SESSION['GO_SESSION']['timezone'] * 3600) . '</td><tr>';
            echo '<tr><td>' . $strModifiedAt . ':</td><td>' . date($_SESSION['GO_SESSION']['date_format'] . ' ' . $_SESSION['GO_SESSION']['time_format'], $project['mtime'] + $_SESSION['GO_SESSION']['timezone'] * 3600) . '</td><tr>';
        }
        ?>
                  <tr>
                  <td valign="top"><?php 
        echo $strComments;
        ?>
:</td>
                <td>
开发者ID:BackupTheBerlios,项目名称:hpt-obm-svn,代码行数:31,代码来源:project.php

示例10: dropbox

     echo '</td></tr>';
     echo '</table>';
 } else {
     $dropbox = new dropbox();
     $required_dropbox = new dropbox();
     $dropbox->add_value('', $strNotIncluded);
     for ($n = 0; $n < sizeof($record); $n++) {
         $dropbox->add_value($n, $record[$n]);
         $required_dropbox->add_value($n, $record[$n]);
     }
     echo '<table border="0" cellpadding="4" cellspacing="0">';
     echo '<tr><td><h3>Group-Office</h3></td>';
     echo '<td><h3>CSV</h3></td></tr>';
     $name = isset($_POST['name']) ? $_POST['name'] : 0;
     echo '<tr><td>' . $strName . ':</td><td>';
     $required_dropbox->print_dropbox('name', $name);
     echo '</td></tr>';
     $address = isset($_POST['address']) ? $_POST['address'] : -1;
     echo '<tr><td>' . $strAddress . ':</td><td>';
     $dropbox->print_dropbox('address', $address);
     echo '</td></tr>';
     $zip = isset($_POST['zip']) ? $_POST['zip'] : -1;
     echo '<tr><td>' . $strZip . ':</td><td>';
     $dropbox->print_dropbox('zip', $zip);
     echo '</td></tr>';
     $city = isset($_POST['city']) ? $_POST['city'] : -1;
     echo '<tr><td>' . $strCity . ':</td><td>';
     $dropbox->print_dropbox('city', $city);
     echo '</td></tr>';
     $state = isset($_POST['state']) ? $_POST['state'] : -1;
     echo '<tr><td>' . $strState . ':</td><td>';
开发者ID:BackupTheBerlios,项目名称:hpt-obm-svn,代码行数:31,代码来源:import.php

示例11: or

  under the terms of the GNU General Public License as published by the
  Free Software Foundation; either version 2 of the License, or (at your
  option) any later version.
*/
require "../../Group-Office.php";
$GO_SECURITY->authenticate();
$GO_MODULES->authenticate('projects');
require $GO_LANGUAGE->get_language_file('projects');
$page_title = $lang_modules['projects'];
require $GO_MODULES->class_path . "projects.class.inc";
$projects = new projects();
$project_id = isset($_GET['project_id']) ? $_GET['project_id'] : '0';
$project_task_id = isset($_GET['project_task_id']) ? $_GET['project_task_id'] : '0';
$projects->query("SELECT * FROM task WHERE task_project_id='{$project_id}' AND task_id='{$project_task_id}'");
if ($projects->next_record()) {
    $tstat = $projects->f("task_status");
    $tcomm = $projects->f("task_comment");
}
require $GO_THEME->theme_path . "header.inc";
echo '<form method="get" action="' . $_SERVER['PHP_SELF'] . '" name="projects_form">';
$dropbox = new dropbox();
$dropbox->add_value(0, $pm_task_status_values[0]);
$dropbox->add_value(1, $pm_task_status_values[1]);
$dropbox->add_value(2, $pm_task_status_values[2]);
$dropbox->print_dropbox("task_status", $tstat);
echo '<input type="hidden" name="close" value="false" />';
echo '<input type="hidden" name="project_id" value="' . $project_id . '" />';
echo '<input type="hidden" name="task" value="" />';
echo '<input type="hidden" name="return_to" value="' . $return_to . '" />';
echo "p = {$project_id}, t = {$project_task_id}";
require $GO_THEME->theme_path . "footer.inc";
开发者ID:BackupTheBerlios,项目名称:hpt-obm-svn,代码行数:31,代码来源:task_status.php

示例12: dropbox

?>
</a></td>
	</td>
</table>

<table border="0" width="100%" cellspacing="15">
<?php 
if ($bookmarks->get_catagories($GO_SECURITY->user_id, true)) {
    $dropbox = new dropbox();
    $dropbox->add_value('', $bm_move_to_catagory);
    $dropbox->add_value('0', $bm_catagory_other);
    while ($bookmarks->next_record()) {
        $dropbox->add_value($bookmarks->f('id'), $bookmarks->f('name'));
    }
    echo '<tr><td colspan="3">';
    $dropbox->print_dropbox('move_to_catagory', '', 'onchange="javascript:move_bookmarks()"');
    echo '</td></tr>';
}
$catagory_count = $bookmarks->get_catagories($GO_SECURITY->user_id);
$column_count = 0;
while ($bookmarks->next_record()) {
    $catagory_write = $GO_SECURITY->has_permission($GO_SECURITY->user_id, $bookmarks->f('acl_write'));
    if ($column_count == 0) {
        echo '<tr>';
    }
    echo '<td valign="top" width="33%">';
    $title = '<table border="0" width="100%" height="22" class="TableHead" cellpadding="0" ' . ' cellspacing="0"><td width="100%">' . htmlspecialchars($bookmarks->f('name')) . '</td>';
    if ($catagory_write) {
        $title .= '<td width="16"><a href="bookmark.php?catagory_id=' . $bookmarks->f('id') . '"><img src="' . $GO_THEME->images['bm_add_bookmark'] . '" border="0"></a></td>';
    }
    $title .= '<td width="16"><a class="normal" href="catagory.php?catagory_id=' . $bookmarks->f("id") . '"><img src="' . $GO_THEME->images['edit'] . '" border="0"></a></td>';
开发者ID:BackupTheBerlios,项目名称:hpt-obm-svn,代码行数:31,代码来源:index.php

示例13: explode

                 // If the actual processed part is equal in this group and tha
                 // last one, we can indent it.
                 if ($parts[$i] == $last[$i]) {
                     $indent = $indent . "&nbsp;&nbsp;&nbsp;";
                 }
             }
         }
         // Text and value of dropbox entry should be the same: the name
         // of the group.
         $dropbox->add_value($ng, $indent . $ng);
         // We finished with processing this group. Now we update this variable
         // To be able to compare the next group with this one.
         $last = explode(".", $ng);
     }
     // Print the dropbox. It's called "newsgroup" without any parameters.
     $dropbox->print_dropbox('newsgroup', '', '');
     echo "<br/>";
 }
 // Now we print an input field for the subject of the message.
 echo "<input type='text' class='textbox' name='news_subj' size='110' ";
 echo "value='";
 // If we are answering to an message we print the old subject with an
 // additional "Re: " in front of it:
 if ($mode == "answer") {
     // Print an "Re: " and the encoded subject of the old message.
     echo "Re: " . utf8_decode(imap_utf8($msg->subject));
 }
 // Close the input field. If we're not answering the value of the input
 // field will be clear and the user has to choose a subject.
 echo "'><br/>\n";
 // Print a textbox for the body of the new message
开发者ID:BackupTheBerlios,项目名称:hpt-obm-svn,代码行数:31,代码来源:index.php

示例14: dropbox

            $dropbox = new dropbox();
            $dropbox->add_arrays($hours, $hours);
            $dropbox->print_dropbox('calendar_start_hour', $calendar['start_hour']);
        } else {
            echo $calendar['start_hour'];
        }
        ?>
		&nbsp;<?php 
        echo $sc_to;
        ?>
&nbsp;
		<?php 
        if ($has_write_permission) {
            $dropbox = new dropbox();
            $dropbox->add_arrays($hours, $hours);
            $dropbox->print_dropbox('calendar_end_hour', $calendar['end_hour']);
        } else {
            echo $calendar['end_hour'];
        }
        ?>
		</td>
	</tr>
	<tr>
		<td colspan="2">
			<?php 
        if ($has_write_permission) {
            $button = new button($cmdOk, "javascript:document.forms[0].close.value='true';document.forms[0].task.value='save';document.forms[0].submit()");
            echo '&nbsp;&nbsp;';
            $button = new button($cmdApply, "javascript:document.forms[0].task.value='save';document.forms[0].submit()");
            echo '&nbsp;&nbsp;';
        }
开发者ID:BackupTheBerlios,项目名称:hpt-obm-svn,代码行数:31,代码来源:calendar.php

示例15:

        $psumamount += $pamount;
        $ptotal += $pprice * $pquantity;
        ?>
			
	<tr>
      <td align="center">&nbsp;  </td>
	  <td nowrap>
	  	&nbsp;&nbsp;-&nbsp;<?php 
        echo $cate_arr[$j];
        ?>
&nbsp;&nbsp;&nbsp;
		<?php 
        $dropbox->print_dropbox('attach[]', '', 'onChange="document.frmOrder.price' . $i . $j . '.value=document.frmOrder.listprice' . $i . $j . '.options[this.selectedIndex].value;CalcMoney(price' . $i . $j . ',quantity' . $i . $j . ',sum' . $i . $j . ',incdec' . $i . $j . ',VAT' . $i . $j . ',amount' . $i . $j . ',sum,total,amount,sumamount)"');
        ?>
		<?php 
        $pricebox->print_dropbox('listprice' . $i . $j, '', ' style="visibility:hidden" ');
        ?>
		<input type="hidden" name="product[]" value="<?php 
        echo $pro->f('product_id');
        ?>
">
		<input type="hidden" name="cate[]" value="<?php 
        echo $cate_id_arr[$j];
        ?>
">
	  </td>
	  <td align="right"> <input type="text" class="textbox" id="price<?php 
        echo $i . $j;
        ?>
" name="price[]" style="text-align:right; width:90px"  value="<?php 
        echo $pprice;
开发者ID:BackupTheBerlios,项目名称:hpt-obm-svn,代码行数:31,代码来源:edit_order.tmp.php


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