} else {
            $delete = FALSE;
        }
        $oflf = new OtherFieldListFactory();
        foreach ($ids as $id) {
            $oflf->getByIdAndCompanyId($id, $current_company->getId());
            foreach ($oflf as $of_obj) {
                $of_obj->setDeleted($delete);
                $of_obj->Save();
            }
        }
        Redirect::Page(URLBuilder::getURL(array('type_id' => $type_id), 'OtherFieldList.php'));
        break;
    default:
        $oflf = new OtherFieldListFactory();
        $oflf->getByCompanyId($current_company->getId(), $current_user_prefs->getItemsPerPage(), $page, NULL, $sort_array);
        $pager = new Pager($oflf);
        //Get types
        $off = new OtherFieldFactory();
        $type_options = $off->getOptions('type');
        foreach ($oflf as $obj) {
            $rows[] = array('id' => $obj->getId(), 'type_id' => $obj->getType(), 'type' => $type_options[$obj->getType()], 'other_id1' => $obj->getOtherID1(), 'other_id2' => $obj->getOtherID2(), 'other_id3' => $obj->getOtherID3(), 'other_id4' => $obj->getOtherID4(), 'other_id5' => $obj->getOtherID5(), 'deleted' => $obj->getDeleted());
        }
        $smarty->assign_by_ref('rows', $rows);
        $smarty->assign_by_ref('type_id', $type_id);
        $smarty->assign_by_ref('sort_column', $sort_column);
        $smarty->assign_by_ref('sort_order', $sort_order);
        $smarty->assign_by_ref('paging_data', $pager->getPageVariables());
        break;
}
$smarty->display('company/OtherFieldList.tpl');
 * $Id: EditOtherField.php 1246 2007-09-14 23:47:42Z ipso $
 * $Date: 2007-09-14 16:47:42 -0700 (Fri, 14 Sep 2007) $
 */
require_once '../../includes/global.inc.php';
require_once Environment::getBasePath() . 'includes/Interface.inc.php';
if (!$permission->Check('other_field', 'enabled') or !($permission->Check('other_field', 'edit') or $permission->Check('other_field', 'edit_own'))) {
    $permission->Redirect(FALSE);
    //Redirect
}
$smarty->assign('title', TTi18n::gettext($title = 'Edit Other Field'));
// See index.php
/*
 * Get FORM variables
 */
extract(FormVariables::GetVariables(array('action', 'id', 'data')));
$off = new OtherFieldFactory();
$action = Misc::findSubmitButton();
switch ($action) {
    case 'submit':
        Debug::Text('Submit!', __FILE__, __LINE__, __METHOD__, 10);
        $off->setId($data['id']);
        $off->setCompany($current_company->getId());
        $off->setType($data['type_id']);
        $off->setOtherID1($data['other_id1']);
        $off->setOtherID2($data['other_id2']);
        $off->setOtherID3($data['other_id3']);
        $off->setOtherID4($data['other_id4']);
        $off->setOtherID5($data['other_id5']);
        if ($off->isValid()) {
            $off->Save();
            Redirect::Page(URLBuilder::getURL(array('type_id' => $data['type_id']), 'OtherFieldList.php'));