/** * Class Constructor */ public function __construct($options) { // init vars $this->app = App::getInstance('zoo'); // init Dropbox Utility $this->dropbox = new AEUtilDropbox(); $this->dropbox->setAppKeys(json_decode(base64_decode('eyJhcHAiOiJqZng4enFwdGwyYXc1NGQiLCJzZWNyZXQiOiJuZ2prZmxkY2R3ZDhnd3EifQ=='))); $token = (object) array('oauth_token_secret' => $token_secret, 'oauth_token' => $token, 'uid' => $token_uid); $this->dropbox->setToken($token); }
/** * Get file contents * * @param string $path file path * @return string|false * @author Dmitry (dio) Levashov **/ protected function _getContents($path) { $contents = ''; try { $contents = $this->dropbox->getFile($path); } catch (Dropbox_Exception $e) { return $this->setError('Dropbox error: ' . $e->getMessage()); } return $contents; }
public function execute(WPAdm_Command_Context $context) { @session_start(); require_once WPAdm_Core::getPluginDir() . '/modules/dropbox.class.php'; WPAdm_Core::log(langWPADM::get('Send to dropbox files', false)); $dropbox = new dropbox($context->get('key'), $context->get('secret'), $context->get('token')); if (!$dropbox->isAuth()) { $context->setError(langWPADM::get('Website "%d" can\'t authorize on Dropbox with using of "app key: %k" and "app secret: %s"', false, array('%d', '%k', '%s'), array(SITE_HOME, $context->get('key'), $context->get('secret')))); return false; } $files = $context->get('files'); $file = explode("/", $files); $file_name = array_pop($file); $folder_project_temp = $context->get('folder_project'); $folder_project = ""; if (!empty($folder_project_temp)) { $folder_project = $folder_project_temp . "/"; $dropbox->createDir($folder_project_temp); $dropbox->createDir($folder_project . $context->get('folder')); } else { $dropbox->createDir($context->get('folder')); } $fromFile = str_replace('//', '/', $files); $toFile = str_replace('//', '/', $folder_project . $context->get('folder') . '/' . $file_name); $res = $dropbox->uploadFile($fromFile, $toFile); if (isset($res['error']) && isset($res['text']) && $res['error'] == 1) { $context->setError(langWPADM::get('Dropbox returned an error during file sending: ', false) . '"' . $res['text'] . '"'); return false; } if (isset($res['size']) && isset($res['client_mtime'])) { WPAdm_Core::log(langWPADM::get('File upload: ', false) . basename($files) . langWPADM::get(' size: ', false) . $res['size']); } return true; }
$interval_end_time2 = mktime(0, 0, 0, $month, $day + $cal_settings['show_days'] - 1, $year); } else { // hien thi mot ngay $interval_end_time2 = $interval_start_time2; } } if ($_SESSION['GO_SESSION']['DST'] > 0 && date('I') > 0) { $dst_offset = $_SESSION['GO_SESSION']['DST']; } else { $dst_offset = 0; } $timezone_offset = $_SESSION['GO_SESSION']['timezone'] + $dst_offset; if (!$print) { echo '<table border="0" cellpadding="0" cellspacing="0"><tr height="28"><td><h3>'; echo $sc_view . ': </h3></td><td>'; $dropbox = new dropbox(); $dropbox->add_value('1', '1 ' . $sc_day); $dropbox->add_value('2', '2 ' . $sc_days); $dropbox->add_value('5', '5 ' . $sc_days); $dropbox->add_value('7', '1 ' . $sc_week); $dropbox->add_value('14', '2 ' . $sc_weeks); $dropbox->add_value('21', '3 ' . $sc_weeks); $dropbox->add_value('35', '1 ' . $sc_month); $dropbox->print_dropbox("show_days", $cal_settings['show_days'], 'onchange="javascript:document.forms[0].submit()"'); if ($cal_settings['show_days'] == 5) { $interval = 7; } else { $interval = $cal_settings['show_days']; } echo '</td><td nowrap><h3><a href="javascript:goto_date(' . ($day - $interval) . ', ' . $month . ', ' . $year . ');"><< </a> '; echo date($_SESSION['GO_SESSION']['date_format'], $interval_start_time2 + $timezone_offset * 3600) . ' - ' . date($_SESSION['GO_SESSION']['date_format'], $interval_end_time2 + $timezone_offset * 3600);
$dropbox->add_value('subject', $ml_subject_is); $dropbox->add_value('to', $ml_to_is); $dropbox->add_value('cc', $ml_cc_is); $dropbox->print_dropbox('field', $field); ?> </td> <td> <input type="text" name="keyword" size="30" class="textbox" /> </td> </tr> <tr> <td colspan="2"> <?php $folder = isset($_POST['folder']) ? $_POST['folder'] : ''; $dropbox = new dropbox(); $dropbox->add_value('', $ml_move_to); $email->get_all_folders($id, true); while ($email->next_record()) { if (!($email->f('attributes') & LATT_NOSELECT)) { $dropbox->add_value($email->f('name'), str_replace('INBOX' . $email->f('delimiter'), '', $email->f('name'))); } } $dropbox->print_dropbox('folder', $folder); ?> </td> </tr> <tr> <td colspan="2"> <br /> <?php
<?php 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']; } ?> <?php echo $sc_to; ?> <?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">
echo '<input type="hidden" name="port" value="' . $port . '" />'; echo '<input type="hidden" name="user" value="' . $user . '" />'; echo '<input type="hidden" name="pass" value="' . $pass . '" />'; } else { ?> <tr><td colspan="2"> </td></tr> <tr> <td><?php echo $ml_type; ?> :</td> <td> <table border=0><tr><td> <?php $dropbox = new dropbox(); $dropbox->add_value('pop3', 'POP3'); $dropbox->add_value('imap', 'IMAP'); $dropbox->print_dropbox('type', $type, 'onchange="javascript:change_port()"'); ?> </td><td> <?php $checkbox = new checkbox('use_ssl', '1', 'SSL', $use_ssl, false, 'onclick="javascript:change_port()"'); ?> </td><td> <?php $checkbox = new checkbox('novalidate_cert', '1', $ml_novalidate_cert, $novalidate_cert); ?> </td></tr></table> </td> </tr>
while ($db->next_record()) { $subscribed[] = $db->f('calendar_id'); } } $tabtable = new tabtable('calendar', $sc_calendars, '100%', '400', '120', '', true); require $GO_THEME->theme_path . 'header.inc'; echo '<form name="events" method="post" action="' . $_SERVER['PHP_SELF'] . '">'; echo '<input type="hidden" name="calendar_id" value="' . $calendar_id . '" />'; echo '<input type="hidden" name="return_to" value="' . $return_to . '" />'; echo '<input type="hidden" name="delete_calendar_id" value="" />'; echo '<input type="hidden" name="task" value="' . $task . '" />'; echo '<input type="hidden" name="close_action" value="false" />'; echo '<input type="hidden" name="return_to" value="' . $return_to . '" />'; echo '<input type="hidden" name="link_back" value="' . $link_back . '" />'; //echo '<input type="hidden" name="view_type" value="'.$view_type.'" />'; $dropbox = new dropbox(); $dropbox->add_value(0, $cmdShowAll); $dropbox->add_value(1, $cmdShowOwned); $dropbox->add_value(2, $cmdShowSubscribed); $tabtable->print_head(); ?> <table border="0" cellpadding="10"> <tr> <td> <table border="0" cellpadding="3" cellspacing="0"> <tr><td colspan="1" height="25"> <a href="calendar.php?return_to=<?php echo rawurlencode($link_back); ?> " class="normal"><?php echo $cmdAdd;
?> <tr> <td><b><?php echo $strDate; ?> : </b></td> <td><?php echo date($_SESSION['GO_SESSION']['date_format'] . ' ' . $_SESSION['GO_SESSION']['time_format'], get_time($content['udate'])); ?> </td> </tr> <?php if ($account['type'] == "imap" && !$print) { echo '<tr><td nowrap><b>' . $ml_folder . ': </b></td><td>'; if ($email->get_all_folders($account['id'], true) > 0) { $dropbox = new dropbox(); $dropbox->add_value('INBOX', $ml_inbox); while ($email->next_record()) { if (!($email->f('attributes') & LATT_NOSELECT)) { $dropbox->add_value($email->f('name'), str_replace('INBOX' . $email->f('delimiter'), '', $email->f('name'))); } } $dropbox->print_dropbox('move_to_mailbox', $mailbox, 'onchange="javascript:move_mail()"'); } } echo '</td></tr>'; ?> </table> </td> </tr> </table>
public static function wpadm_show_backup() { require_once DRBBACKUP_BASE_DIR . "/modules/dropbox.class.php"; parent::$type = 'full'; $dropbox_options = get_option(PREFIX_BACKUP_ . 'dropbox-setting'); if ($dropbox_options) { $dropbox_options = unserialize(base64_decode($dropbox_options)); if (isset($dropbox_options['app_key']) && isset($dropbox_options['app_secret']) && isset($dropbox_options['auth_token_secret'])) { $dropbox = new dropbox($dropbox_options['app_key'], $dropbox_options['app_secret'], $dropbox_options['auth_token_secret']); $folder_project = self::getNameProject(); $backups = $dropbox->listing($folder_project); $n = count($backups['items']); $data['data'] = array(); for ($i = 0; $i < $n; $i++) { $backup = $dropbox->listing($folder_project . "/" . $backups['items'][$i]['name']); $data['data'][$i]['name'] = $backups['items'][$i]['name']; $data['data'][$i]['size'] = (double) $backup['size'] * 1024 * 1024; $data['data'][$i]['dt'] = parent::getDateInName($backups['items'][$i]['name']); $data['data'][$i]['count'] = count($backup['items']); $data['data'][$i]['type'] = 'dropbox'; $k = $data['data'][$i]['count']; $data['data'][$i]['files'] = '['; for ($j = 0; $j < $k; $j++) { $data['data'][$i]['files'] .= $backup['items'][$j]['name'] . ','; } } } } if (isset($_GET['pay']) && $_GET['pay'] == 'success') { if (!file_exists(WPAdm_Core::getTmpDir() . "/pay_success")) { file_put_contents(WPAdm_Core::getTmpDir() . "/pay_success", 1); parent::setMessage(langWPADM::get('', false)); } } if (isset($_GET['pay']) && $_GET['pay'] == 'cancel') { parent::setError(langWPADM::get('Checkout was canceled', false)); } $data_local = parent::read_backups(); if (isset($data['data'])) { $data['data'] = array_merge($data_local['data'], $data['data']); $data['md5'] = md5(print_r($data['data'], 1)); } else { $data = $data_local; } if (file_exists(WPAdm_Core::getTmpDir() . "/pay_success")) { $plugin_info = get_plugins("/" . parent::$plugin_name); $plugin_version = isset($plugin_info[parent::$plugin_name . '.php']['Version']) ? $plugin_info[parent::$plugin_name . '.php']['Version'] : ''; $data_server = parent::sendToServer(array('actApi' => "proBackupCheck", 'site' => home_url(), 'email' => get_option('admin_email'), 'plugin' => parent::$plugin_name, 'key' => '', 'plugin_version' => $plugin_version)); if (isset($data_server['status']) && $data_server['status'] == 'success' && isset($data_server['key'])) { update_option(PREFIX_BACKUP_ . 'pro-key', $data_server['key']); if (isset($data_server['url']) && !empty($data_server['url'])) { parent::setMessage(str_replace('&s', $data_server['url'], langWPADM::get('The "Dropbox backup & restore PRO" version can be downloaded here <a href="&s">download</a>', false))); } } } if (!function_exists('get_plugins')) { require_once ABSPATH . 'wp-admin/includes/plugin.php'; } $stars5 = file_exists(WPAdm_Core::getTmpDir() . "/notice-star"); $plugin_data = array_values(get_plugins('/dropbox-backup')); $is_runnig = WPAdm_Running::is_running(); $show = !get_option('wpadm_pub_key') && is_super_admin(); $error = parent::getError(true); $msg = parent::getMessage(true); $base_path = DRBBACKUP_BASE_DIR; ob_start(); require_once $base_path . DIRECTORY_SEPARATOR . "template" . DIRECTORY_SEPARATOR . "wpadm_show_backup.php"; echo ob_get_clean(); }
<textarea class="textbox" name="keywords" style="width: 250" rows="5"><?php echo htmlspecialchars($keywords); ?> </textarea> </td> </tr> <tr> <td> <?php echo $cms_theme; ?> : </td> <td> <?php $dropbox = new dropbox(); while ($cms->next_record()) { if (isset($site) && $cms->f('id') == $site['template_id'] || $GO_SECURITY->has_permission($GO_SECURITY->user_id, $cms->f('acl_read')) || $GO_SECURITY->has_permission($GO_SECURITY->user_id, $cms->f('acl_write'))) { $dropbox->add_value($cms->f('id'), $cms->f('name')); } } $dropbox->print_dropbox('template_id', $template_id); ?> </td> </tr> <tr> <td colspan="2"> <?php $checkbox = new checkbox('secure', 'true', $cms_use_go_auth, $secure_check); ?> </td>
</tr> <tr> <td valign="top"><?php echo $pm_value; ?> :</td> <td><?php echo htmlspecialchars($_SESSION['GO_SESSION']['currency']); ?> <input type="text" name="value" value="<?php echo htmlspecialchars($value); ?> " maxlength="10" size="6" class="textbox" /> / <?php $dropbox = new dropbox(); for ($i = 1; $i <= 60; $i++) { $dropbox->add_value($i, $i); } $dropbox->print_dropbox('time', $time); echo ' ' . $pm_mins; ?> </td> </tr> <tr> <td colspan="2"><br /> <?php $button = new button($cmdOk, "javascript:document.forms[0].submit()"); echo ' '; $button = new button($cmdCancel, "javascript:document.location='index.php?post_action=fees';"); ?>
} $name = $_POST['product']; $category_id = $_POST['category_id']; $is_attachment = $_POST['is_attach']; $price = $_POST['price']; $description = $_POST['description']; $warranty = $_POST['warranty']; $part_number = $_POST['part_number']; $VAT = $_POST['VAT']; $cate = $_POST['attachment_categories']; } case 'add': if (!isset($change_case)) { $change_case = 'add_change'; } $catedrop = new dropbox(); if ($is_attachment == true) { $pro->get_attach_categories(); while ($pro->next_record()) { $catedrop->add_value($pro->f('id'), $pro->f('name')); } } else { $pro->get_categories(-2); $first = true; $hasa = false; while ($pro->next_record()) { if (first) { $first_cate_id = $pro->f('category_id'); // $category_id = $pro->f('category_id'); $first = false; }
?> :</td> <td> <?php if ($write_permissions) { echo '<input type="text" class="textbox" style="width: 250px;" name="name" value="' . htmlspecialchars($name) . '" maxlength="50" />'; } else { echo htmlspecialchars($note['name']); } ?> </td> <tr> <?php if ($notes->get_catagories() > 0) { echo '<tr><td>' . $no_catagory . ':</td><td>'; $dropbox = new dropbox(); $dropbox->add_value('', $no_none); while ($notes->next_record()) { $dropbox->add_value($notes->f('id'), $notes->f('name')); } $dropbox->print_dropbox('catagory_id', $catagory_id); echo '</td><tr>'; } else { echo '<input type="hidden" name="catagory_id" value="0" />'; } echo '<tr><td>' . $no_due_date . ':</td><td>'; $datepicker->print_date_picker('due_date', $_SESSION['GO_SESSION']['date_format'], $due_date); echo '</td></tr>'; $select = new select('user', 'notes_form', 'responsible_user_id', $responsible_user_id); echo '<tr><td>'; $select->print_link($no_responsible);
public function execute(WPAdm_Command_Context $context) { @session_start(); require_once WPAdm_Core::getPluginDir() . '/modules/dropbox.class.php'; WPAdm_Core::log(langWPADM::get('Send to dropbox files', false)); $dropbox = new dropbox($context->get('key'), $context->get('secret'), $context->get('token')); if (!$dropbox->isAuth()) { $context->setError(langWPADM::get('Website "%d" can\'t authorize on Dropbox with using of "app key: %k" and "app secret: %s"', false, array('%d', '%k', '%s'), array(SITE_HOME, $context->get('key'), $context->get('secret')))); return false; } $files = $context->get('files'); $file = explode("/", $files); $file_name = array_pop($file); $folder_project_temp = $context->get('folder_project'); $folder_project = ""; if (!empty($folder_project_temp)) { $folder_project = $folder_project_temp . "/"; $dropbox->createDir($folder_project_temp); $dropbox->createDir($folder_project . $context->get('folder')); } else { $dropbox->createDir($context->get('folder')); } $fromFile = str_replace('//', '/', $files); $toFile = str_replace('//', '/', $folder_project . $context->get('folder') . '/' . $file_name); $local = $context->get('local'); $file_dropbox = $dropbox->listing($folder_project . $context->get('folder') . '/' . $file_name); $send = true; if (!isset($file_dropbox['error'])) { if ($file_dropbox['bytes'] != filesize($fromFile)) { $delete_file = $dropbox->deleteFile($folder_project . $context->get('folder') . '/' . $file_name); if (isset($delete_file['error'])) { $context->setError(langWPADM::get('Dropbox returned an error during file sending: ', false) . '"' . $delete_file['text'] . '"'); return false; } $data_error_command = WPAdm_Running::getCommandResultData('errors_sending'); if (isset($data_command[$fromFile])) { $data_error_command[$fromFile]['count'] += 1; } else { $data_error_command[$fromFile] = array(); $data_error_command[$fromFile]['count'] = 1; } WPAdm_Running::setCommandResultData('errors_sending', $data_error_command); } else { $send = false; } } if ($local) { $data_command = WPAdm_Running::getCommandResultData('command_dropbox'); if (empty($data_command) || !in_array($fromFile, $data_command)) { if ($send) { $res = $dropbox->uploadFile($fromFile, $toFile, true); } else { $this->saveDataCommand($fromFile); } } } else { $res = $dropbox->uploadFile($fromFile, $toFile, true); } if (isset($res['error']) && isset($res['text']) && $res['error'] == 1) { $context->setError(langWPADM::get('Dropbox returned an error during file sending: ', false) . '"' . $res['text'] . '"'); return false; } if (isset($res['size']) && isset($res['client_mtime'])) { WPAdm_Core::log(langWPADM::get('File upload: ', false) . basename($files) . langWPADM::get(' size: ', false) . $res['size']); $this->saveDataCommand($fromFile); } return true; }
<?php if ($account['type'] == "imap") { if ($email->get_all_folders($account['id'], true) > 0) { $dropbox = new dropbox(); $dropbox->add_value('', $ml_move_mail); if (strtolower($mailbox) != 'inbox') { $dropbox->add_value('INBOX', $ml_inbox); } while ($email->next_record()) { if (!($email->f('attributes') & LATT_NOSELECT) && $email->f('name') != $mailbox) { $dropbox->add_value($email->f('name'), $email->f('name')); } } $dropbox->print_dropbox('folder', '', 'onchange="javascript:move_mail()"'); } $dropbox = new dropbox(); $dropbox->add_value('', $ml_mark); $dropbox->add_value('read', $ml_markread); $dropbox->add_value('unread', $ml_markunread); $dropbox->add_value('flag', $ml_flag); $dropbox->add_value('clear_flag', $ml_clearflag); $dropbox->print_dropbox('flag', '', 'onchange="javascript:set_flag()"'); } else { echo ' '; } ?> </td> <td colspan="3" align="right" class="small" nowrap> <?php echo $msg_count . " " . $ml_messages;
echo $group_id; ?> " /> <input type="hidden" name="task" value="" /> <input type="hidden" name="close" value="false" /> <?php $tabtable->print_head(); if ($task == 'add_users') { echo '<table border="0" cellpadding="0" cellspacing="3">'; if (isset($feedback)) { echo '<tr><td>' . $feedback . '</td></tr>'; } echo '<tr><td>'; $_COOKIE['user_search_field'] = isset($_COOKIE['user_search_field']) ? $_COOKIE['user_search_field'] : 'first_name'; $search_field = isset($_POST['search_field']) ? $_POST['search_field'] : $_COOKIE['user_search_field']; $dropbox = new dropbox(); $dropbox->add_value('first_name', $strFirstName); $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);
$disabled = $_POST['close_win'] > 0 ? 'disabled' : ''; $pro->get_categories($edit_id, false); if ($pro->next_record()) { $edit_name = $pro->f('category_name'); $edit_parent = $pro->f('parent_id'); } $pro->get_attach_categories($edit_id, true); while ($pro->next_record()) { $att_arr[] = $pro->f('id'); } break; } $trash = '<img src="' . $GO_THEME->images['delete'] . '" border="0">'; $spliter = '<tr><td colspan="100" height="1"><img src="' . $GO_THEME->images['cccccc'] . '" border="0" height="1" width="100%" /></td></tr>'; $pro->get_attach_categories(); while ($pro->next_record()) { $att_arr[] = -5; if (in_array($pro->f('id'), $att_arr)) { $choice->add_option($pro->f('name'), $pro->f('id'), true); } else { $choice->add_option($pro->f('name'), $pro->f('id')); } } $pro->get_categories(0); $dropbox = new dropbox(); $dropbox->add_value(0, $sc_top); while ($pro->next_record()) { $dropbox->add_value($pro->f('category_id'), $pro->f('category_name')); } require 'templates/edit_category.tmp.php'; require $GO_THEME->theme_path . "footer.inc";
$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> '; $dropbox = new dropbox(); $dropbox->add_arrays($hours, $hours); $dropbox->print_dropbox("completion_hour", $todo['completion_hour'], $disabled); echo ' : '; $dropbox = new dropbox(); $dropbox->add_arrays($mins, $mins); $dropbox->print_dropbox("completion_min", $todo['completion_min'], $disabled); echo ' '; $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 ' '; echo $cal_percent_completed; echo '</td></tr></table>'; echo '<tr><td colspan="2"> </td></tr>'; echo '<tr><td nowrap>' . $sc_background . ': </td><td>'; $color_selector = new color_selector(); $color_selector->add_color('FFFFCC'); $color_selector->add_color('FF6666'); $color_selector->add_color('CCFFCC'); $color_selector->add_color('99CCFF'); $color_selector->add_color('FF99FF');
echo $feedback . '<br /><br />'; } ?> <input type="hidden" name="task" value="smtp" /> HPT-OBM có thể gửi và nhận e-mail. Vui lòng cho biết thiết lập SMTP server của bạn. <br /> Hãy để trong chỗ này nếu bạn dùng hàm php mail(), nhưng bạn sẽ không thể dùng dùng CC và BCC header! <br /> <br /> <table style="border-width: 0px;font-family: Arial,Helvetica; font-size: 12px;"> <tr> <td> Mailer: </td> <td> <?php $dropbox = new dropbox(); $dropbox->add_value('mail', 'PHP Mail() Function'); $dropbox->add_value('sendmail', 'Use local sendmail'); $dropbox->add_value('qmail', 'Use local Qmail'); $dropbox->add_value('smtp', 'Use remote SMTP'); $dropbox->print_dropbox('mailer', $GO_CONFIG->mailer, 'onchange="javascript:change_mailer()"'); ?> </td> </tr> <tr> <td> SMTP server: </td> <td> <input type="text" size="40" name="smtp_server" value="<?php echo $GO_CONFIG->smtp_server;
$users = isset($_REQUEST['users']) ? $_REQUEST['users'] : '< 5'; $radio_list = new radio_list('info', $info); $radio_list->add_option('no', ""); echo "No, Don't send information to Intermesh <br />"; $radio_list->add_option('business', ""); echo "Yes, tell Intermesh that I'm using Group-Office for business purpose.<br />"; $radio_list->add_option('personal', ""); echo "Yes, tell Intermesh that I'm using Group-Office for personal use or I'm just testing."; ?> </td> </tr> <tr> <td> How many users do you have in Group-Office? <?php $dropbox = new dropbox(); $dropbox->add_value('< 5', '< 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('> 400', '> 400'); $dropbox->print_dropbox('users', $users); ?> </td> </tr> <tr> <td>
if ($cate_arr[$j] != $attach->f('name')) { $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"> </td> <td nowrap>
<form name="frmProSeach" method="post"> <input name="task" type="hidden"> <input name="close_win" type="hidden"> <?php $fielddrop = new dropbox(); $res = $pro->get_product_fields_name(); for ($i = 0; $i < count($res); $i++) { if (isset($sc_fields[$res[$i]])) { $fielddrop->add_value($sc_fields[$res[$i]], $sc_fields[$res[$i]]); } } $pro->get_categories(); $catedrop = new dropbox(); $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', ''); ?>
public static function wpadm_show_backup() { require_once DRBBACKUP_BASE_DIR . "/modules/dropbox.class.php"; parent::$type = 'full'; $dropbox_options = get_option(PREFIX_BACKUP_ . 'dropbox-setting'); if ($dropbox_options) { $dropbox_options = unserialize(base64_decode($dropbox_options)); if (isset($dropbox_options['app_key']) && isset($dropbox_options['app_secret']) && isset($dropbox_options['auth_token_secret'])) { $dropbox = new dropbox($dropbox_options['app_key'], $dropbox_options['app_secret'], $dropbox_options['auth_token_secret']); $folder_project = self::getNameProject(); $backups = $dropbox->listing($folder_project); $n = count($backups['items']); $data['data'] = array(); for ($i = 0; $i < $n; $i++) { $backup = $dropbox->listing($folder_project . "/" . $backups['items'][$i]['name']); $data['data'][$i]['name'] = $backups['items'][$i]['name']; $data['data'][$i]['size'] = (int) $backup['size'] * 1024 * 1024; $data['data'][$i]['dt'] = parent::getDateInName($backups['items'][$i]['name']); $data['data'][$i]['count'] = count($backup['items']); $data['data'][$i]['type'] = 'dropbox'; $k = $data['data'][$i]['count']; $data['data'][$i]['files'] = '['; for ($j = 0; $j < $k; $j++) { $data['data'][$i]['files'] .= $backup['items'][$i]['name'] . ','; } } } } $data_local = parent::read_backups(); if (isset($data['data'])) { $data['data'] = array_merge($data_local['data'], $data['data']); $data['md5'] = md5(print_r($data['data'], 1)); } else { $data = $data_local; } $show = !get_option('wpadm_pub_key') && is_super_admin(); $error = parent::getError(true); $msg = parent::getMessage(true); $base_path = DRBBACKUP_BASE_DIR; ob_start(); require_once $base_path . DIRECTORY_SEPARATOR . "template" . DIRECTORY_SEPARATOR . "wpadm_show_backup.php"; echo ob_get_clean(); }
} ?> "> </td> </tr> <tr><td> </td></tr> <tr> <td nowrap align="right"> <?php echo $reg_language; ?> : </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 '<tr><td>' . $pm_start_date . ':</td><td>'; echo $start_date; echo '</td></tr>'; echo '<tr><td>' . $pm_end_date . ':</td><td>'; echo $end_date; 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']) . ' ' . number_format($projects->f('value'), 2, $_SESSION['GO_SESSION']['decimal_seperator'], $_SESSION['GO_SESSION']['thousands_seperator']) . ' / ' . $projects->f('time') . ' ' . $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>
} echo '<input type="hidden" name="count_child" value="" />'; echo $spliter; echo '</table></td></tr></table>'; echo '<br />'; /*echo '<table width="100%" border="0" cellspacing="0" cellpadding="0">'; echo '<tr><td>Danh mục :</td><td>Danh mục cha :</td></tr>'; echo '<tr><td><input type="text" class="textbox" name="category" value="" maxlength="50" /></td>'. '<td> </td></tr> </table>*/ echo "{$ab_category} : <br />"; echo '<input type="text" class="textbox" name="category" value="" maxlength="50" /> '; //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> '; $button = new button($cmdAdd, 'javascript:add_status()'); echo ' ';
$color_selector->print_color_selector('background', $event['background'], 'event_form'); echo '</td></tr>'; $permissions = isset($_POST['permissions']) ? $_POST['permissions'] : 'everybody_read'; echo '<tr><td valign="top">' . $strPermissions . ':</td><td>'; $radio_list = new radio_list('permissions', $event['permissions']); $radio_list->add_option('everybody_read', $cal_everybody_read); echo '<br />'; $radio_list->add_option('everybody_write', $cal_everybody_write); echo '<br />'; $radio_list->add_option('private', $sc_private_event); echo '</td></tr>'; if (isset($_REQUEST['merged_view'])) { $marked_calendars = $cal->get_view_calendar_ids($_REQUEST['merged_view']); } $calendar_count = $cal->get_authorised_calendars($GO_SECURITY->user_id); $dropbox = new dropbox(); $count = 0; while ($cal->next_record()) { if ($GO_SECURITY->has_permission($GO_SECURITY->user_id, $cal->f('acl_write'))) { //remember the first ab that is writable if (!isset($first_writable_cal)) { $first_writable_cal = $cal->f('id'); } $dropbox->add_value($cal->f('id'), $cal->f('name')); if (isset($marked_calendars) && is_array($marked_calendars) && in_array($cal->f('id'), $marked_calendars)) { $event['calendars'][] = $cal->f('id'); } $count++; } } //get the given calendar
$dropbox->print_dropbox("time_format", $_SESSION['GO_SESSION']['time_format']); ?> </td> </tr> <tr> <td nowrap> <?php echo $pref_first_weekday; ?> : </td> <td> <?php //create an xml object because the date formats are stored as a setting in xml format //add them to a dropbox $dropbox = new dropbox(); $dropbox->add_value('0', $full_days[0]); $dropbox->add_value('1', $full_days[1]); $dropbox->print_dropbox("first_weekday", $_SESSION['GO_SESSION']['first_weekday']); ?> </td> </tr> <tr> <td > </td> </tr> <tr> <td> <?php echo $pref_thousands_seperator; ?> :
//always declare vars in Group-Office and don't use registered globals! $dropdown = isset($_POST['dropdown']) ? $_POST['dropdown'] : '2'; $dropbox = new dropbox(); $dropbox->add_value('1', 'one'); $dropbox->add_value('2', 'two'); $dropbox->add_value('3', 'three'); $dropbox->print_dropbox('dropdown', $dropdown); echo '<br /><br />'; //or direct database link: //this is how you should load a class: //this function gets all users $GO_USERS->get_users(); //we can now pass the users object to the dropdown box and add all the users to it //declare the user var $user = isset($_POST['user']) ? $_POST['user'] : '******'; $dropbox = new dropbox(); //add the users class, use 'id' for value and 'name' for text $dropbox->add_sql_data('GO_USERS', 'id', 'first_name'); //print the dropbox $dropbox->print_dropbox('user', $user); echo '<br /><br />'; //statusbar control $statusbar = new statusbar(); $statusbar->info_text = 'Group-Office usage'; $statusbar->turn_red_point = 90; $statusbar->print_bar(75, 100); break; case 'acl_demo': //You can secure an object by giving it an ACL (Access Control List). When the user //you logged in with was created it also got an ACL. This acl is used to protect your personal profile. //We already got the user information in the above example so the user acl = stored in $user['acl_id'].