本文整理汇总了PHP中Notification::LoadAll方法的典型用法代码示例。如果您正苦于以下问题:PHP Notification::LoadAll方法的具体用法?PHP Notification::LoadAll怎么用?PHP Notification::LoadAll使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Notification
的用法示例。
在下文中一共展示了Notification::LoadAll方法的4个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: Refresh
/**
* Refresh this MetaControl with Data from the local NotificationUserAccount object.
* @param boolean $blnReload reload NotificationUserAccount from the database
* @return void
*/
public function Refresh($blnReload = false)
{
if ($blnReload) {
$this->objNotificationUserAccount->Reload();
}
if ($this->lblNotificationUserAccountId) {
if ($this->blnEditMode) {
$this->lblNotificationUserAccountId->Text = $this->objNotificationUserAccount->NotificationUserAccountId;
}
}
if ($this->lstUserAccount) {
$this->lstUserAccount->RemoveAllItems();
if (!$this->blnEditMode) {
$this->lstUserAccount->AddItem(QApplication::Translate('- Select One -'), null);
}
$objUserAccountArray = UserAccount::LoadAll();
if ($objUserAccountArray) {
foreach ($objUserAccountArray as $objUserAccount) {
$objListItem = new QListItem($objUserAccount->__toString(), $objUserAccount->UserAccountId);
if ($this->objNotificationUserAccount->UserAccount && $this->objNotificationUserAccount->UserAccount->UserAccountId == $objUserAccount->UserAccountId) {
$objListItem->Selected = true;
}
$this->lstUserAccount->AddItem($objListItem);
}
}
}
if ($this->lblUserAccountId) {
$this->lblUserAccountId->Text = $this->objNotificationUserAccount->UserAccount ? $this->objNotificationUserAccount->UserAccount->__toString() : null;
}
if ($this->lstNotification) {
$this->lstNotification->RemoveAllItems();
if (!$this->blnEditMode) {
$this->lstNotification->AddItem(QApplication::Translate('- Select One -'), null);
}
$objNotificationArray = Notification::LoadAll();
if ($objNotificationArray) {
foreach ($objNotificationArray as $objNotification) {
$objListItem = new QListItem($objNotification->__toString(), $objNotification->NotificationId);
if ($this->objNotificationUserAccount->Notification && $this->objNotificationUserAccount->Notification->NotificationId == $objNotification->NotificationId) {
$objListItem->Selected = true;
}
$this->lstNotification->AddItem($objListItem);
}
}
}
if ($this->lblNotificationId) {
$this->lblNotificationId->Text = $this->objNotificationUserAccount->Notification ? $this->objNotificationUserAccount->Notification->__toString() : null;
}
if ($this->txtLevel) {
$this->txtLevel->Text = $this->objNotificationUserAccount->Level;
}
if ($this->lblLevel) {
$this->lblLevel->Text = $this->objNotificationUserAccount->Level;
}
}
示例2: dtgNotification_Bind
public function dtgNotification_Bind()
{
// Get Total Count b/c of Pagination
$this->dtgNotification->TotalItemCount = Notification::CountAll();
$objClauses = array();
if ($objClause = $this->dtgNotification->OrderByClause) {
array_push($objClauses, $objClause);
}
if ($objClause = $this->dtgNotification->LimitClause) {
array_push($objClauses, $objClause);
}
$this->dtgNotification->DataSource = Notification::LoadAll($objClauses);
}
示例3: lstNotification_Create
protected function lstNotification_Create()
{
$this->lstNotification = new QListBox($this);
$this->lstNotification->Name = QApplication::Translate('Notification');
$this->lstNotification->Required = true;
if (!$this->blnEditMode) {
$this->lstNotification->AddItem(QApplication::Translate('- Select One -'), null);
}
$objNotificationArray = Notification::LoadAll();
if ($objNotificationArray) {
foreach ($objNotificationArray as $objNotification) {
$objListItem = new QListItem($objNotification->__toString(), $objNotification->NotificationId);
if ($this->objNotificationUserAccount->Notification && $this->objNotificationUserAccount->Notification->NotificationId == $objNotification->NotificationId) {
$objListItem->Selected = true;
}
$this->lstNotification->AddItem($objListItem);
}
}
}
示例4: dtgNotification_Bind
protected function dtgNotification_Bind()
{
// Because we want to enable pagination AND sorting, we need to setup the $objClauses array to send to LoadAll()
// Remember! We need to first set the TotalItemCount, which will affect the calcuation of LimitClause below
$this->dtgNotification->TotalItemCount = Notification::CountAll();
// Setup the $objClauses Array
$objClauses = array();
// If a column is selected to be sorted, and if that column has a OrderByClause set on it, then let's add
// the OrderByClause to the $objClauses array
if ($objClause = $this->dtgNotification->OrderByClause) {
array_push($objClauses, $objClause);
}
// Add the LimitClause information, as well
if ($objClause = $this->dtgNotification->LimitClause) {
array_push($objClauses, $objClause);
}
// Set the DataSource to be the array of all Notification objects, given the clauses above
$this->dtgNotification->DataSource = Notification::LoadAll($objClauses);
}