private function onAdd() { if ($this->_accessLevel < ACCESS_LEVEL_EDIT) { $this->listByView('Invalid user level for action.'); return; } $formattedPhone1 = StringUtility::extractPhoneNumber($this->getTrimmedInput('phone1', $_POST)); if (!empty($formattedPhone1)) { $phone1 = $formattedPhone1; } else { $phone1 = $this->getTrimmedInput('phone1', $_POST); } $formattedPhone2 = StringUtility::extractPhoneNumber($this->getTrimmedInput('phone2', $_POST)); if (!empty($formattedPhone2)) { $phone2 = $formattedPhone2; } else { $phone2 = $this->getTrimmedInput('phone2', $_POST); } $formattedFaxNumber = StringUtility::extractPhoneNumber($this->getTrimmedInput('faxNumber', $_POST)); if (!empty($formattedFaxNumber)) { $faxNumber = $formattedFaxNumber; } else { $faxNumber = $this->getTrimmedInput('faxNumber', $_POST); } $url = $this->getTrimmedInput('url', $_POST); if (!empty($url)) { $formattedURL = StringUtility::extractURL($url); if (!empty($formattedURL)) { $url = $formattedURL; } } /* Hot company? */ $isHot = $this->isChecked('isHot', $_POST); $name = $this->getTrimmedInput('name', $_POST); $address = $this->getTrimmedInput('address', $_POST); $city = $this->getTrimmedInput('city', $_POST); $state = $this->getTrimmedInput('state', $_POST); $zip = $this->getTrimmedInput('zip', $_POST); $keyTechnologies = $this->getTrimmedInput('keyTechnologies', $_POST); $notes = $this->getTrimmedInput('notes', $_POST); /* Departments list editor. */ $departmentsCSV = $this->getTrimmedInput('departmentsCSV', $_POST); /* Bail out if any of the required fields are empty. */ if (empty($name)) { $this->listByView('Required fields are missing.'); return; } if (!eval(Hooks::get('CLIENTS_ON_ADD_PRE'))) { return; } $companies = new Companies($this->_siteID); $companyID = $companies->add($name, $address, $city, $state, $zip, $phone1, $phone2, $faxNumber, $url, $keyTechnologies, $isHot, $notes, $this->_userID, $this->_userID); if ($companyID <= 0) { CommonErrors::fatal(COMMONERROR_RECORDERROR, $this, 'Failed to add company.'); } if (!eval(Hooks::get('CLIENTS_ON_ADD_POST'))) { return; } /* Update extra fields. */ $companies->extraFields->setValuesOnEdit($companyID); /* Add departments */ $departments = array(); $departmentsDifferences = ListEditor::getDifferencesFromList($departments, 'name', 'departmentID', $departmentsCSV); $companies->updateDepartments($companyID, $departmentsDifferences); CATSUtility::transferRelativeURI('m=companies&a=show&companyID=' . $companyID); }
public function wizard_siteName() { if (!isset($_SESSION['CATS']) || empty($_SESSION['CATS'])) { echo 'CATS has lost your session!'; return; } /* Bail out if the user doesn't have SA permissions. */ if ($this->_realAccessLevel < ACCESS_LEVEL_SA) { echo 'You do not have permission to change the site name.'; return; } if (isset($_GET['siteName']) && !empty($_GET['siteName'])) { $siteName = $_GET['siteName']; } else { $siteName = ''; } if ($siteName == 'default_site' || strlen($siteName) <= 0) { echo 'That is not a valid site name. Please choose a different one.'; return; } $site = new Site($this->_siteID); $site->setName($siteName); $companies = new Companies($this->_siteID); $companyIDInternal = $companies->add('Internal Postings', '', '', '', '', '', '', '', '', '', '', '', '', 'Internal postings.', $this->_userID, $this->_userID); $companies->setCompanyDefault($companyIDInternal); $_SESSION['CATS']->setSiteName($siteName); echo 'Ok'; }