本文整理匯總了PHP中models\SiteModel::getIsFeatureGroup方法的典型用法代碼示例。如果您正苦於以下問題:PHP SiteModel::getIsFeatureGroup方法的具體用法?PHP SiteModel::getIsFeatureGroup怎麽用?PHP SiteModel::getIsFeatureGroup使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類models\SiteModel
的用法示例。
在下文中一共展示了SiteModel::getIsFeatureGroup方法的3個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。
示例1: update
/**
* @param SiteModel $site
* @param $fields
* @param UserAccountModel $user As opposed to other DBAccess classes, User can not be NULL.
* @throws Exception
* @throws \Exception
*/
public function update(SiteModel $site, $fields, UserAccountModel $user)
{
$alreadyInTransaction = $this->db->inTransaction();
// Make Information Data
$fieldsSQL1 = array();
$fieldsParams1 = array('id' => $site->getId());
foreach ($fields as $field) {
$fieldsSQL1[] = " " . $field . "=:" . $field . " ";
if ($field == 'title') {
$fieldsParams1['title'] = substr($site->getTitle(), 0, VARCHAR_COLUMN_LENGTH_USED);
} else {
if ($field == 'slug') {
$fieldsParams1['slug'] = substr($site->getSlug(), 0, VARCHAR_COLUMN_LENGTH_USED);
$fieldsSQL1[] = " slug_canonical=:slug_canonical ";
$fieldsParams1['slug_canonical'] = substr(SiteModel::makeCanonicalSlug($site->getSlug()), 0, VARCHAR_COLUMN_LENGTH_USED);
} else {
if ($field == 'description_text') {
$fieldsParams1['description_text'] = $site->getDescriptionText();
} else {
if ($field == 'footer_text') {
$fieldsParams1['footer_text'] = $site->getFooterText();
} else {
if ($field == 'is_web_robots_allowed') {
$fieldsParams1['is_web_robots_allowed'] = $site->getIsWebRobotsAllowed() ? 1 : 0;
} else {
if ($field == 'is_closed_by_sys_admin') {
$fieldsParams1['is_closed_by_sys_admin'] = $site->getIsClosedBySysAdmin() ? 1 : 0;
} else {
if ($field == 'closed_by_sys_admin_reason') {
$fieldsParams1['closed_by_sys_admin_reason'] = $site->getClosedBySysAdminReason();
} else {
if ($field == 'is_listed_in_index') {
$fieldsParams1['is_listed_in_index'] = $site->getIsListedInIndex() ? 1 : 0;
} else {
if ($field == 'is_feature_importer') {
$fieldsParams1['is_feature_importer'] = $site->getIsFeatureImporter() ? 1 : 0;
} else {
if ($field == 'is_feature_curated_list') {
$fieldsParams1['is_feature_curated_list'] = $site->getIsFeatureCuratedList() ? 1 : 0;
} else {
if ($field == 'is_feature_map') {
$fieldsParams1['is_feature_map'] = $site->getIsFeatureMap() ? 1 : 0;
} else {
if ($field == 'is_feature_virtual_events') {
$fieldsParams1['is_feature_virtual_events'] = $site->getIsFeatureVirtualEvents() ? 1 : 0;
} else {
if ($field == 'is_feature_physical_events') {
$fieldsParams1['is_feature_physical_events'] = $site->getIsFeaturePhysicalEvents() ? 1 : 0;
} else {
if ($field == 'is_feature_group') {
$fieldsParams1['is_feature_group'] = $site->getIsFeatureGroup() ? 1 : 0;
} else {
if ($field == 'prompt_emails_days_in_advance') {
$fieldsParams1['prompt_emails_days_in_advance'] = $site->getPromptEmailsDaysInAdvance();
} else {
if ($field == 'is_feature_tag') {
$fieldsParams1['is_feature_tag'] = $site->getIsFeatureTag() ? 1 : 0;
}
}
}
}
}
}
}
}
}
}
}
}
}
}
}
}
}
// Make History Data
$fieldsSQL2 = array('site_id', 'user_account_id', 'created_at');
$fieldsSQLParams2 = array(':site_id', ':user_account_id', ':created_at');
$fieldsParams2 = array('site_id' => $site->getId(), 'user_account_id' => $user ? $user->getId() : null, 'created_at' => $this->timesource->getFormattedForDataBase());
foreach ($this->possibleFields as $field) {
if (in_array($field, $fields) || $field == 'title') {
$fieldsSQL2[] = " " . $field . " ";
$fieldsSQLParams2[] = " :" . $field . " ";
if ($field == 'title') {
$fieldsParams2['title'] = substr($site->getTitle(), 0, VARCHAR_COLUMN_LENGTH_USED);
} else {
if ($field == 'slug') {
$fieldsParams2['slug'] = substr($site->getSlug(), 0, VARCHAR_COLUMN_LENGTH_USED);
$fieldsSQL2[] = " slug_canonical ";
$fieldsSQLParams2[] = " :slug_canonical ";
$fieldsParams2['slug_canonical'] = substr(SiteModel::makeCanonicalSlug($site->getSlug()), 0, VARCHAR_COLUMN_LENGTH_USED);
} else {
if ($field == 'description_text') {
$fieldsParams2['description_text'] = $site->getDescriptionText();
//.........這裏部分代碼省略.........
示例2: array
function __construct(\models\SiteModel $siteModel, UserPermissionsList $permissionsList)
{
$this->actions = array('org.openacalendar' => array('eventNew' => $permissionsList->hasPermission("org.openacalendar", "EVENTS_CHANGE"), 'groupNew' => $permissionsList->hasPermission("org.openacalendar", "GROUPS_CHANGE") && $siteModel->getIsFeatureGroup(), 'venueNew' => $permissionsList->hasPermission("org.openacalendar", "VENUES_CHANGE") && $siteModel->getIsFeaturePhysicalEvents(), 'areaNew' => $permissionsList->hasPermission("org.openacalendar", "AREAS_CHANGE") && $siteModel->getIsFeaturePhysicalEvents(), 'curatedListNew' => $permissionsList->hasPermission("org.openacalendar", "CALENDAR_CHANGE") && $siteModel->getIsFeatureCuratedList(), 'curatedListGeneralEdit' => $permissionsList->hasPermission("org.openacalendar", "CALENDAR_CHANGE") && $siteModel->getIsFeatureCuratedList(), 'admin' => $permissionsList->hasPermission("org.openacalendar", "CALENDAR_ADMINISTRATE")));
}
示例3: getUserNotifyContentForSiteAndUser
/**
* @return array
*/
public function getUserNotifyContentForSiteAndUser(\models\SiteModel $siteModel, UserAccountModel $userAccountModel)
{
global $CONFIG;
if (!$siteModel->getIsFeatureGroup()) {
return array();
}
$out = array();
$grb = new GroupRepositoryBuilder();
$grb->setSite($siteModel);
$grb->setLimit(0);
// all! No limit
// TODO don't we still want to do this? How will user A get a notification if user B deletes group? but then so far most group deletetions are by admins.
$grb->setIncludeDeleted(false);
foreach ($grb->fetchAll() as $group) {
$uwg = $this->loadByUserAndGroup($userAccountModel, $group);
if ($uwg && $uwg->getIsWatching()) {
$dateSince = $uwg->getSinceDateForNotifyChecking();
$historyRepositoryBuilder = new HistoryRepositoryBuilder();
$historyRepositoryBuilder->setGroup($group);
$historyRepositoryBuilder->setSince($dateSince);
$historyRepositoryBuilder->setNotUser($userAccountModel);
// Only admins can change tags at the moment so don't include
$historyRepositoryBuilder->setIncludeTagHistory(false);
$histories = $historyRepositoryBuilder->fetchAll();
if ($histories) {
$content = new UserWatchesGroupNotifyContent();
$content->setHistories($histories);
$userWatchesGroupStopRepository = new UserWatchesGroupStopRepository();
$userWatchesGroupStop = $userWatchesGroupStopRepository->getForUserAndGroup($userAccountModel, $group);
$content->setUnwatchURL($CONFIG->getWebSiteDomainSecure($siteModel->getSlug()) . '/group/' . $group->getSlugForURL() . '/stopWatchingFromEmail/' . $userAccountModel->getId() . '/' . $userWatchesGroupStop->getAccessKey());
$content->setUserAccount($userAccountModel);
$content->setSite($siteModel);
$content->setGroup($group);
$content->setWatchedThingTitle($group->getTitle());
$content->setWatchedThingURL($CONFIG->getWebSiteDomainSecure($siteModel->getSlug()) . '/group/' . $group->getSlugForURL() . '/history');
$out[] = $content;
}
}
}
return $out;
}