本文整理汇总了PHP中E::GetMapper方法的典型用法代码示例。如果您正苦于以下问题:PHP E::GetMapper方法的具体用法?PHP E::GetMapper怎么用?PHP E::GetMapper使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类E
的用法示例。
在下文中一共展示了E::GetMapper方法的6个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: Init
/**
* Инициализация
*
*/
public function Init()
{
$this->oMapperTopic = $this->oMapper = E::GetMapper(__CLASS__);
$this->oUserCurrent = E::ModuleUser()->GetUserCurrent();
$this->aTopicTypesObjects = $this->getContentTypes(array('content_active' => 1));
$this->aTopicTypes = array_keys($this->aTopicTypesObjects);
}
示例2: Init
/**
* Инициализация
*
*/
public function Init()
{
$this->oMapper = E::GetMapper(__CLASS__);
$this->oUserCurrent = E::ModuleUser()->GetUserCurrent();
// LS-compatible
$this->oMapperBlog = $this->oMapper;
}
示例3: Init
/**
* Инициализация модуля
* Создаём локальный экземпляр модуля Viewer
* Момент довольно спорный, но позволяет избавить основной шаблон от мусора уведомлений
*
*/
public function Init()
{
$this->oViewerLocal = E::ModuleViewer()->GetLocalViewer();
$this->oMapper = E::GetMapper(__CLASS__);
$this->sDir = Config::Get('module.notify.dir');
$this->sPrefix = Config::Get('module.notify.prefix');
}
示例4: Init
/**
* Инициализация
*
*/
public function Init()
{
$this->oMapper = E::GetMapper(__CLASS__);
// * Проверяем есть ли у юзера сессия, т.е. залогинен или нет
$iUserId = intval(E::ModuleSession()->Get('user_id'));
if ($iUserId && ($oUser = $this->GetUserById($iUserId)) && $oUser->getActivate()) {
if ($this->oSession = $oUser->getCurrentSession()) {
if ($this->oSession->GetSessionExit()) {
// Сессия была закрыта
$this->Logout();
return;
}
$this->oUserCurrent = $oUser;
}
}
// Если сессия оборвалась по таймауту (не сам пользователь ее завершил),
// то пытаемся автоматически авторизоваться
if (!$this->oUserCurrent) {
$this->AutoLogin();
}
// * Обновляем сессию
if (isset($this->oSession)) {
$this->UpdateSession();
}
}
示例5: Init
/**
* Инициализация модуля
*/
public function Init()
{
$this->oMapper = E::GetMapper(__CLASS__);
}
示例6: Init
/**
* Инициализация
*
*/
public function Init()
{
$this->oMapper = E::GetMapper(__CLASS__);
$this->oUserCurrent = E::ModuleUser()->GetUserCurrent();
}