本文整理汇总了PHP中Companies::add方法的典型用法代码示例。如果您正苦于以下问题:PHP Companies::add方法的具体用法?PHP Companies::add怎么用?PHP Companies::add使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Companies
的用法示例。
在下文中一共展示了Companies::add方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: onAdd
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);
}
示例2: wizard_siteName
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';
}