當前位置: 首頁>>代碼示例>>PHP>>正文


PHP SiteConfig::forgerBlock方法代碼示例

本文整理匯總了PHP中SiteConfig::forgerBlock方法的典型用法代碼示例。如果您正苦於以下問題:PHP SiteConfig::forgerBlock方法的具體用法?PHP SiteConfig::forgerBlock怎麽用?PHP SiteConfig::forgerBlock使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在SiteConfig的用法示例。


在下文中一共展示了SiteConfig::forgerBlock方法的5個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。

示例1: pageProfil

 public function pageProfil($user, $message = '')
 {
     $avatar = $user->get('avatar');
     $notifsMP = $user->get('notifMP');
     if ($notifsMP && $notifsMP == 'n') {
         $notifsMP = false;
     } else {
         $notifsMP = true;
     }
     if ($avatar) {
         $avatar = '<img class="avatar" src="' . $user->get('avatar') . '" alt="Votre Avatar" title="Votre Avatar"></img>';
     } else {
         $avatar = '<div><i>aucun avatar pour le moment </i></div>';
     }
     $sign = $user->get('sign');
     $html = $this->creerFormProfil($avatar, $sign, $notifsMP);
     $this->body = SiteConfig::forgerBlock('Profil', $message . $html);
     $this->head = '<title>' . $this->siteName . ' - Profil </title>' . PHP_EOL;
 }
開發者ID:selenith,項目名稱:plasmide,代碼行數:19,代碼來源:VueForum.php

示例2: pageBase

 public function pageBase()
 {
     $this->body = SiteConfig::forgerBlock('Contact ', $this->mailVierge . $this->getContactForm());
     $this->head = '<title>' . $this->nomSite . ' - Contact </title>' . PHP_EOL;
 }
開發者ID:selenith,項目名稱:plasmide,代碼行數:5,代碼來源:VueContact.php

示例3: pageOptions

 public function pageOptions($user, $message = '')
 {
     $this->head = '<title>' . $this->nomSite . ' - Options du raidplanner </title>' . PHP_EOL;
     if ($message) {
         $message = '<div class="alert alert-success" role="alert">' . $message . '</div>';
     }
     $notifEvent = $user->get('notifEvent');
     if ($notifEvent && $notifEvent == 'n') {
         $notifEvent = false;
     } else {
         $notifEvent = true;
     }
     $notifComEvent = $user->get('notifComEvent');
     if ($notifComEvent && $notifComEvent == 'n') {
         $notifComEvent = false;
     } else {
         $notifComEvent = true;
     }
     $html = $this->craftFormOptions($notifEvent, $notifComEvent);
     $this->body = SiteConfig::forgerBlock('Options', $message . $html);
 }
開發者ID:selenith,項目名稱:plasmide,代碼行數:21,代碼來源:VueAgenda.php

示例4: displayReponseForm

    private function displayReponseForm()
    {
        $content = '
			<div id="contact">
				' . $this->formInfos . '
			</div>';
        return SiteConfig::forgerBlock('Réagissez à cet article', $content);
    }
開發者ID:selenith,項目名稱:plasmide,代碼行數:8,代碼來源:VueSite.php

示例5: pageProfil

 public function pageProfil($user, $message = '')
 {
     $mail = $user->get('mail');
     $notifEvent = $user->get('notifEvent');
     if ($notifEvent && $notifEvent == 'n') {
         $notifEvent = false;
     } else {
         $notifEvent = true;
     }
     $notifComEvent = $user->get('notifComEvent');
     if ($notifComEvent && $notifComEvent == 'n') {
         $notifComEvent = false;
     } else {
         $notifComEvent = true;
     }
     $html = '<div class="text-right" ><a href="./?mod=auth&action=pageSuppress" class="btn btn-default">Supprimer mon compte</a></div>';
     $html .= $this->creerFormProfil($mail, $notifEvent, $notifComEvent);
     $this->body = SiteConfig::forgerBlock('Compte', $message . $html);
     $this->head = '<title>' . $this->nomSite . ' - Compte </title>' . PHP_EOL;
     $this->addCkeLibs();
 }
開發者ID:selenith,項目名稱:plasmide,代碼行數:21,代碼來源:VueAuth.php


注:本文中的SiteConfig::forgerBlock方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。