text_row_ex(_("Name (to appear on reports):"), 'coy_name', 42, 50); textarea_row(_("Address:"), 'postal_address', $_POST['postal_address'], 35, 6); text_row_ex(_("Domicile:"), 'domicile', 25, 55); text_row_ex(_("Phone Number:"), 'phone', 25, 55); text_row_ex(_("Fax Number:"), 'fax', 25); email_row_ex(_("Email Address:"), 'email', 25, 55); email_row_ex(_("BCC Address for all outgoing mails:"), 'bcc_email', 25, 55); text_row_ex(_("Official Company Number:"), 'coy_no', 25); text_row_ex(_("GSTNo:"), 'gst_no', 25); currencies_list_row(_("Home Currency:"), 'curr_default', $_POST['curr_default']); fiscalyears_list_row(_("Fiscal Year:"), 'f_year', $_POST['f_year']); text_row_ex(_("Tax Periods:"), 'tax_prd', 10, 10, '', null, null, _('Months.')); text_row_ex(_("Tax Last Period:"), 'tax_last', 10, 10, '', null, null, _('Months back.')); table_section(2); label_row(_("Company Logo:"), $_POST['coy_logo']); file_row(_("New Company Logo (.jpg)") . ":", 'pic', 'pic'); check_row(_("Delete Company Logo:"), 'del_coy_logo', $_POST['del_coy_logo']); number_list_row(_("Use Dimensions:"), 'use_dimension', null, 0, 2); sales_types_list_row(_("Base for auto price calculations:"), 'base_sales', $_POST['base_sales'], false, _('No base price list')); text_row_ex(_("Add Price from Std Cost:"), 'add_pct', 10, 10, '', null, null, "%"); $curr = get_currency($_POST['curr_default']); text_row_ex(_("Round to nearest:"), 'round_to', 10, 10, '', null, null, $curr['hundreds_name']); label_row("", " "); check_row(_("Search Item List"), 'no_item_list', null); check_row(_("Search Customer List"), 'no_customer_list', null); check_row(_("Search Supplier List"), 'no_supplier_list', null); label_row("", " "); check_row(_("Automatic Revaluation Currency Accounts"), 'auto_curr_reval', $_POST['auto_curr_reval']); check_row(_("Time Zone on Reports"), 'time_zone', $_POST['time_zone']); text_row_ex(_("Login Timeout:"), 'login_tout', 10, 10, '', null, null, _('seconds')); label_row(_("Version Id"), $_POST['version_id']);
echo file_foot(); } } else { if ($action == 'file') { if (function_exists('ob_filter_path_nicer')) { ob_start('ob_filter_path_nicer'); } $dir_url = urlencode($dir); $dir_html = htmlspecialchars($dir); echo <<<EOS \t<div> \t\t<a href="?">{$l_root}</a> <a href="?path={$dir_url}">{$dir_html}</a>/<strong>{$filename}</strong><br /> \t</div> EOS; echo file_head(); echo file_row($fileinfo, $path); echo file_foot(); if ($tplfile) { $tplfile_html = htmlspecialchars($tplfile); echo <<<EOS \t\t<div> \t\t\t<a href="#tpl">{$tplfile_html}</a><br /> \t\t</div> EOS; } if (function_exists('ob_filter_path_nicer')) { ob_end_flush(); } echo <<<EOS \t<div class="code"> \t\t<ol>{$filecov}</ol>
function display_language_edit($selected_id) { global $installed_languages, $dflt_lang; if ($selected_id == -1) { $n = count($installed_languages); } else { $n = $selected_id; } start_form(true); start_table(TABLESTYLE2); if ($selected_id != -1) { $lang = $installed_languages[$n]; $_POST['code'] = $lang['code']; $_POST['name'] = $lang['name']; $_POST['encoding'] = $lang['encoding']; if (isset($lang['rtl']) && $lang['rtl'] === true) { $_POST['rtl'] = $lang['rtl']; } else { $_POST['rtl'] = false; } $_POST['dflt'] = $dflt_lang == $lang['code']; hidden('selected_id', $selected_id); } text_row_ex(_("Language Code"), 'code', 20); text_row_ex(_("Language Name"), 'name', 20); text_row_ex(_("Encoding"), 'encoding', 20); yesno_list_row(_("Right To Left"), 'rtl', null, "", "", false); yesno_list_row(_("Default Language"), 'dflt', null, "", "", false); file_row(_("Language File") . " (PO)", 'uploadfile'); file_row(_("Language File") . " (MO)", 'uploadfile2'); end_table(0); display_note(_("Select your language files from your local harddisk."), 0, 1); submit_add_or_update_center(false, '', 'both'); end_form(); }
<?php } ?> </select> </div> </form> <?php if ($_REQUEST['find']) { $sFind = $_REQUEST['find']; $sKind = $_REQUEST['kind']; exec('mdfind -onlyin / "' . $sFind . ' ' . $sKind . '"', $aFind); // echo count($aFind); // echo " matches"; echo "<ul class=\"iphonelist\">"; $i = 0; foreach ($aFind as $path) { $i++; $file = basename($path); $dir = dirname($path); file_row("{$path}"); if ($i > 50) { break; } } echo "</ul>"; } ?> </div> </body> </html>
function item_settings(&$stock_id) { global $SysPrefs, $path_to_root, $new_item, $pic_height; start_outer_table(TABLESTYLE2); table_section(1); table_section_title(_("Item")); //------------------------------------------------------------------------------------ if ($new_item) { text_row(_("Item Code/ISBN:"), 'NewStockID', null, 21, 20); $_POST['inactive'] = 0; } else { // Must be modifying an existing item if (get_post('NewStockID') != get_post('stock_id') || get_post('addupdate')) { // first item display $_POST['NewStockID'] = $_POST['stock_id']; $myrow = get_item($_POST['NewStockID']); $_POST['long_description'] = $myrow["long_description"]; $_POST['description'] = $myrow["description"]; $_POST['category_id'] = $myrow["category_id"]; /*==============MOODLEARNING=============*/ $_POST['level_id'] = $myrow["level_id"]; /*=======================================*/ $_POST['tax_type_id'] = $myrow["tax_type_id"]; $_POST['units'] = $myrow["units"]; $_POST['mb_flag'] = $myrow["mb_flag"]; $_POST['sales_account'] = $myrow['sales_account']; $_POST['inventory_account'] = $myrow['inventory_account']; $_POST['cogs_account'] = $myrow['cogs_account']; $_POST['adjustment_account'] = $myrow['adjustment_account']; $_POST['assembly_account'] = $myrow['assembly_account']; $_POST['dimension_id'] = $myrow['dimension_id']; $_POST['dimension2_id'] = $myrow['dimension2_id']; $_POST['no_sale'] = $myrow['no_sale']; $_POST['del_image'] = 0; $_POST['inactive'] = $myrow["inactive"]; $_POST['editable'] = $myrow["editable"]; } label_row(_("Item Code/ISBN:"), $_POST['NewStockID']); hidden('NewStockID', $_POST['NewStockID']); set_focus('description'); } /*=================MOODLEARNING====================*/ level_list_row(_("Level:"), 'level_id', null); /*=================================================*/ text_row(_("Name:"), 'description', null, 52, 200); textarea_row(_('Description:'), 'long_description', null, 42, 3); stock_categories_list_row(_("Category/Subject:"), 'category_id', null, false, $new_item); if ($new_item && (list_updated('category_id') || !isset($_POST['units']))) { $category_record = get_item_category($_POST['category_id']); $_POST['level_id'] = $category_record["level_id"]; // moodlearning edit $_POST['subject_id'] = $category_record["level_id"]; $_POST['tax_type_id'] = $category_record["dflt_tax_type"]; $_POST['units'] = $category_record["dflt_units"]; $_POST['mb_flag'] = $category_record["dflt_mb_flag"]; $_POST['inventory_account'] = $category_record["dflt_inventory_act"]; $_POST['cogs_account'] = $category_record["dflt_cogs_act"]; $_POST['sales_account'] = $category_record["dflt_sales_act"]; $_POST['adjustment_account'] = $category_record["dflt_adjustment_act"]; $_POST['assembly_account'] = $category_record["dflt_assembly_act"]; $_POST['dimension_id'] = $category_record["dflt_dim1"]; $_POST['dimension2_id'] = $category_record["dflt_dim2"]; $_POST['no_sale'] = $category_record["dflt_no_sale"]; $_POST['editable'] = 0; } $fresh_item = !isset($_POST['NewStockID']) || $new_item || check_usage($_POST['stock_id'], false); item_tax_types_list_row(_("Item Tax Type:"), 'tax_type_id', null); stock_item_types_list_row(_("Item Type:"), 'mb_flag', null, $fresh_item); stock_units_list_row(_('Units of Measure:'), 'units', null, $fresh_item); check_row(_("Editable description:"), 'editable'); check_row(_("Exclude from sales:"), 'no_sale'); table_section(2); $dim = get_company_pref('use_dimension'); if ($dim >= 1) { table_section_title(_("Dimensions")); dimensions_list_row(_("Dimension") . " 1", 'dimension_id', null, true, " ", false, 1); if ($dim > 1) { dimensions_list_row(_("Dimension") . " 2", 'dimension2_id', null, true, " ", false, 2); } } if ($dim < 1) { hidden('dimension_id', 0); } if ($dim < 2) { hidden('dimension2_id', 0); } table_section_title(_("GL Accounts")); gl_all_accounts_list_row(_("Sales Account:"), 'sales_account', $_POST['sales_account']); if (!is_service($_POST['mb_flag'])) { gl_all_accounts_list_row(_("Inventory Account:"), 'inventory_account', $_POST['inventory_account']); gl_all_accounts_list_row(_("C.O.G.S. Account:"), 'cogs_account', $_POST['cogs_account']); gl_all_accounts_list_row(_("Inventory Adjustments Account:"), 'adjustment_account', $_POST['adjustment_account']); } else { gl_all_accounts_list_row(_("C.O.G.S. Account:"), 'cogs_account', $_POST['cogs_account']); hidden('inventory_account', $_POST['inventory_account']); hidden('adjustment_account', $_POST['adjustment_account']); } if (is_manufactured($_POST['mb_flag'])) { gl_all_accounts_list_row(_("Item Assembly Costs Account:"), 'assembly_account', $_POST['assembly_account']); } else { hidden('assembly_account', $_POST['assembly_account']); } table_section_title(_("Other")); // Add image upload for New Item - by Joe file_row(_("Image File (.jpg)") . ":", 'pic', 'pic'); // Add Image upload for New Item - by Joe $stock_img_link = ""; $check_remove_image = false; if (isset($_POST['NewStockID']) && file_exists(company_path() . '/images/' . item_img_name($_POST['NewStockID']) . ".jpg")) { // 31/08/08 - rand() call is necessary here to avoid caching problems. Thanks to Peter D. $stock_img_link .= "<img id='item_img' alt = '[" . $_POST['NewStockID'] . ".jpg" . "]' src='" . company_path() . '/images/' . item_img_name($_POST['NewStockID']) . ".jpg?nocache=" . rand() . "'" . " height='{$pic_height}' border='0'>"; $check_remove_image = true; } else { $stock_img_link .= _("No image"); } label_row(" ", $stock_img_link); if ($check_remove_image) { check_row(_("Delete Image:"), 'del_image'); } record_status_list_row(_("Item status:"), 'inactive'); end_outer_table(1); div_start('controls'); if (!isset($_POST['NewStockID']) || $new_item) { submit_center('addupdate', _("Insert New Item"), true, '', 'default'); } else { submit_center_first('addupdate', _("Update Item"), '', @$_REQUEST['popup'] ? true : 'default'); submit_return('select', get_post('stock_id'), _("Select this items and return to document entry."), 'default'); submit('clone', _("Clone This Item"), true, '', true); submit('delete', _("Delete This Item"), true, '', true); submit_center_last('cancel', _("Cancel"), _("Cancel Edition"), 'cancel'); } div_end(); }
$sql = get_sql_for_attached_documents($type); $cols = array(_("#") => array('fun' => 'trans_view', 'ord' => ''), _("Description") => array('name' => 'description'), _("Filename") => array('name' => 'filename'), _("Size") => array('name' => 'filesize'), _("Filetype") => array('name' => 'filetype'), _("Date Uploaded") => array('name' => 'tran_date', 'type' => 'date'), array('insert' => true, 'fun' => 'edit_link'), array('insert' => true, 'fun' => 'view_link'), array('insert' => true, 'fun' => 'download_link'), array('insert' => true, 'fun' => 'delete_link')); $table =& new_db_pager('trans_tbl', $sql, $cols); $table->width = "60%"; display_db_pager($table); } //---------------------------------------------------------------------------------------- start_form(true); viewing_controls(); display_rows($_POST['filterType']); br(2); start_table(TABLESTYLE2); if ($selected_id != -1) { if ($Mode == 'Edit') { $row = get_attachment($selected_id); $_POST['trans_no'] = $row["trans_no"]; $_POST['description'] = $row["description"]; hidden('trans_no', $row['trans_no']); hidden('unique_name', $row['unique_name']); label_row(_("Transaction #"), $row['trans_no']); } hidden('selected_id', $selected_id); } else { text_row_ex(_("Transaction #") . ':', 'trans_no', 10); } text_row_ex(_("Description") . ':', 'description', 40); file_row(_("Attached File") . ":", 'filename', 'filename'); end_table(1); submit_add_or_update_center($selected_id == -1, '', 'process'); end_form(); end_page();
// Open a known directory, and proceed to read its contents if (is_dir($dir)) { if ($dh = opendir($dir)) { $ignoredNames = array("Desktop DB", "Desktop DF"); if ($dir == "/") { $ignoredNames = array_merge($ignoredNames, array("Network", "Icon\n", "cores", "bin", "etc", "mach", "mach.sym", "automount", "mach_kernel.ctfsys", "net", "private", "sbin", "tmp", "usr", "var", "home", "Volumes", "mach_kernel", "dev")); } if ($dir == "/Volumes") { file_row("/", ""); $ignoredNames[] = $_ENV["ROOT_VOLUME_NAME"]; } while (($file = readdir($dh)) !== false) { if (in_array($file, $ignoredNames)) { continue; } file_row("{$dir}/{$file}"); } closedir($dh); } } echo "</ul>"; ?> <!-- // /t/icon?path=<?php echo $path; ?> &size={32,32} // cgi/nph-IconFetcher?path=<?php echo urlencode($path); ?> &size={16,16}*/