本文整理汇总了PHP中app\helpers\Helper::getSiteConfig方法的典型用法代码示例。如果您正苦于以下问题:PHP Helper::getSiteConfig方法的具体用法?PHP Helper::getSiteConfig怎么用?PHP Helper::getSiteConfig使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类app\helpers\Helper
的用法示例。
在下文中一共展示了Helper::getSiteConfig方法的4个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: indexAction
function indexAction()
{
$fc = FrontController::getInstance();
$model = new FrontModel();
$popProducts = (new IndexWidgets())->recAndPopProductsWidget('popular', 6);
$recProducts = (new IndexWidgets())->recAndPopProductsWidget('recommended');
$model->setData(['slides' => IndexWidgets::getSliderWidget(), 'currentCategory' => (new IndexWidgets())->currentCategoryWidget(Helper::getSiteConfig()->currentCategoryWidget), 'popularProducts' => Generator::popularProducts($popProducts, 6), 'recommendedProducts' => Generator::recommendedProducts($recProducts)]);
$output = $model->render('../views/index.php', 'main');
$fc->setPage($output);
}
示例2: emailHandler
public static function emailHandler($to = FALSE)
{
try {
if (!$to) {
$to = Helper::getSiteConfig()->contactinfo->siteMail->value;
}
if (empty(self::$data)) {
throw new Exception('Класс не инициализирован должным образом');
}
self::emailSender((string) $to, self::$data['subject'], self::$data['message'], self::$data['email']);
return TRUE;
} catch (Exception $ex) {
Session::setUserMsg('Пожалуйста, заполните все поля формы', 'danger');
header('Location: ' . $_SERVER['REQUEST_URI']);
}
}
示例3: cleanImgSrc
private function cleanImgSrc($data)
{
return str_replace(Helper::getSiteConfig()->general->siteHost, '', $data);
}
示例4: sendValidateCode
private function sendValidateCode()
{
$siteName = Helper::getSiteConfig()->general->siteName;
$siteHost = Helper::getSiteConfig()->general->siteHost;
$subject = 'Подтверждение регистрации на сайте ' . $siteName;
$content = '
<p>Здравствуйте! Благодарим вас за регистрацию на сайте ' . $siteName . '</p>
<p>Для подтверждения регистрации пройдите по ссылке:</p>
<a href="' . $siteHost . '/user/validate/email/' . $this->email . '/key/' . $this->validateKey . '">Подтвердить email</a>';
Mailer::emailSender($this->email, $subject, $content);
}