} 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');
        $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'));
            break;
        }
    default:
        if (isset($id)) {
            BreadCrumb::setCrumb($title);
            $oflf = new OtherFieldListFactory();
            //$uwlf->GetByUserIdAndCompanyId($current_user->getId(), $current_company->getId() );
            $oflf->getById($id);
            foreach ($oflf as $obj) {
                $data = array('id' => $obj->getId(), 'company_id' => $obj->getCompany(), 'type_id' => $obj->getType(), 'other_id1' => $obj->getOtherID1(), 'other_id2' => $obj->getOtherID2(), 'other_id3' => $obj->getOtherID3(), 'other_id4' => $obj->getOtherID4(), 'other_id5' => $obj->getOtherID5(), 'created_date' => $obj->getCreatedDate(), 'created_by' => $obj->getCreatedBy(), 'updated_date' => $obj->getUpdatedDate(), 'updated_by' => $obj->getUpdatedBy(), 'deleted_date' => $obj->getDeletedDate(), 'deleted_by' => $obj->getDeletedBy());
            }
        }
        //Select box options;
        //$jif = new JobItemFactory();
        $data['type_options'] = $off->getOptions('type');
        $smarty->assign_by_ref('data', $data);
        break;
}
$smarty->assign_by_ref('off', $off);
$smarty->display('company/EditOtherField.tpl');