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


PHP article::getArticleTemplate方法代碼示例

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


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

示例1: showScripttime

            }
            if ($REX[CACHING_DEBUG]) {
                print "Script time: " . showScripttime();
            }
            $SHOWARTICLE = false;
        } else {
            // start caching
            $Cache->startCacheFile();
        }
    }
}
if ($SHOWARTICLE) {
    $REX_ARTICLE = new article();
    $REX_ARTICLE->setCLang($clang);
    if ($REX_ARTICLE->setArticleId($article_id)) {
        $REX_ARTICLE->getArticleTemplate();
    } elseif ($REX_ARTICLE->setArticleId($REX[STARTARTIKEL_ID])) {
        $REX_ARTICLE->getArticleTemplate();
    } else {
        echo "Kein Startartikel selektiert / No starting Article selected. Please click here to enter <a href=redaxo/index.php>redaxo</a>";
        $REX[STATS] = 0;
    }
    //////////////////////////////////////////////
    // advanced caching
    //////////////////////////////////////////////
    if ($Cache->makeCacheFile) {
        $Cache->writeCacheFile();
        if ($REX[CACHING_DEBUG]) {
            print "<br>MadeCache<br>";
        }
    } else {
開發者ID:BackupTheBerlios,項目名稱:redaxo-svn,代碼行數:31,代碼來源:index.php

示例2: article

 // $mail_aid
 // $test_email
 // $test_name
 // $test_firstname
 // $content
 $to_email = $test_email;
 $to_name = $test_name;
 $to_firstname = $test_firstname;
 // Testmail verschicken..
 $REX['GG'] = true;
 $REX['REDAXO'] = true;
 $REX_ARTICLE = new article();
 $REX_ARTICLE->setCLang(0);
 $REX_ARTICLE->setArticleId($mail_aid);
 // $REX_ARTICLE->setTemplateId(xx);
 $content = $REX_ARTICLE->getArticleTemplate();
 $REX['GG'] = false;
 $REX['REDAXO'] = true;
 // Allgemeine Initialisierung
 $mail = new MyMailer();
 $mail->AddAddress($to_email);
 $mail->From = $mail_reply;
 $mail->FromName = $mail_reply;
 // Subject
 $subject = $mail_subject;
 $subject = str_replace("###EMAIL###", "{$to_email}", $subject);
 $subject = str_replace("###NAME###", "{$to_name}", $subject);
 $subject = str_replace("###FIRSTNAME###", "{$to_firstname}", $subject);
 // Bodies
 // html
 $html_body = $content;
開發者ID:BackupTheBerlios,項目名稱:redaxo-addons,代碼行數:31,代碼來源:newsletter.inc.php


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