当前位置: 首页>>代码示例>>PHP>>正文


PHP PMF_Date::format方法代码示例

本文整理汇总了PHP中PMF_Date::format方法的典型用法代码示例。如果您正苦于以下问题:PHP PMF_Date::format方法的具体用法?PHP PMF_Date::format怎么用?PHP PMF_Date::format使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在PMF_Date的用法示例。


在下文中一共展示了PMF_Date::format方法的15个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。

示例1: printf

            echo str_replace("\"", "´", $record['title']);
            ?>
'">
                    <?php 
            echo $record['title'];
            ?>
                </a>
<?php 
            if (isset($numCommentsByFaq[$record['id']])) {
                printf('<br/><a class="label label-inverse" href="?action=comments#record_id_%d">%d %s</a>', $record['id'], $numCommentsByFaq[$record['id']], $PMF_LANG['ad_start_comments']);
            }
            ?>
</td>
            <td style="width: 48px;">
                <?php 
            echo $date->format($record['date']);
            ?>
            </td>
            <td style="width: 96px;">
                <?php 
            echo $linkverifier->getEntryStateHTML($record['id'], $record['lang']);
            ?>
            </td>
            <td style="width: 16px;">
                <a class="btn btn-info" href="?action=copyentry&amp;id=<?php 
            echo $record['id'];
            ?>
&amp;lang=<?php 
            echo $record['lang'];
            ?>
"
开发者ID:Ravikumarsreerama,项目名称:faq,代码行数:31,代码来源:record.show.php

示例2: foreach

    print $PMF_LANG['ad_sess_session'];
    ?>
</th>
            </tr>
        </thead>
        <tbody>
<?php 
    foreach ($sessiondata as $sid => $data) {
        ?>
            <tr>
                <td><?php 
        print $data['ip'];
        ?>
</td>
                <td><?php 
        print PMF_Date::format(date("Y-m-d H:i", $data['time']));
        ?>
</td>
                <td><a href="?action=viewsession&amp;id=<?php 
        print $sid;
        ?>
"><?php 
        print $sid;
        ?>
</a></td>
            </tr>
<?php 
    }
    ?>
        </tbody>
        </table>
开发者ID:atlcurling,项目名称:tkt,代码行数:31,代码来源:stat.browser.php

示例3: foreach

                <tbody>
<?php 
        foreach ($openquestions as $question) {
            ?>
                    <tr>
                        <td>
                            <input id="questions[]"
                                   name="questions[]"
                                   value="<?php 
            echo $question['id'];
            ?>
" type="checkbox" />
                        </td>
                        <td>
                            <?php 
            echo $date->format(PMF_Date::createIsoDate($question['created']));
            ?>
                            <br>
                            <a href="mailto:<?php 
            echo $question['email'];
            ?>
">
                                <?php 
            echo $question['username'];
            ?>
                            </a>
                        </td>
                        <td>
                            <strong><?php 
            echo $category->categoryName[$question['category_id']]['name'];
            ?>
开发者ID:Ravikumarsreerama,项目名称:faq,代码行数:31,代码来源:record.questions.php

示例4:

            continue;
        }
        $counter++;
        if ($counter <= $start) {
            continue;
        }
        $displayedCounter++;
        $user->getUserById($logging_value['usr']);
        ?>
        <tr class="cell">
            <td class="list"><?php 
        print $logging_id;
        ?>
</td>
            <td class="list"><?php 
        print PMF_Date::format(date('Y-m-d H:i', $logging_value['time']));
        ?>
</td>
            <td class="list"><?php 
        print $user->getLogin();
        ?>
</td>
            <td class="list"><?php 
        print $logging_value['ip'];
        ?>
</td>
        </tr>
        <tr class="cell">
            <td colspan="4" class="list"><?php 
        $text = $logging_value['text'];
        $text = str_replace("Loginerror", $PMF_LANG["ad_log_lger"], $text);
开发者ID:atlcurling,项目名称:tkt,代码行数:31,代码来源:adminlog.php

示例5: getNews

 /**
  * Function for generating the HTML5 code for the current news
  *
  * @param boolean $showArchive Show archived news
  * @param boolean $active      Show active news
  *
  * @return string
  */
 public function getNews($showArchive = false, $active = true)
 {
     $output = '';
     $news = $this->getLatestData($showArchive, $active);
     $date = new PMF_Date($this->_config);
     foreach ($news as $item) {
         $url = sprintf('%s?action=news&amp;newsid=%d&amp;newslang=%s', PMF_Link::getSystemRelativeUri(), $item['id'], $item['lang']);
         $oLink = new PMF_Link($url, $this->_config);
         if (isset($item['header'])) {
             $oLink->itemTitle = $item['header'];
         }
         $output .= sprintf('<header><h3><a name="news_%d" href="%s">%s <img class="goNews" src="assets/img/more.gif" width="11" height="11" alt="%s" /></a></h3></header>', $item['id'], $oLink->toString(), $item['header'], $item['header']);
         $output .= sprintf('%s', $item['content']);
         if (strlen($item['link']) > 1) {
             $output .= sprintf('<br />%s <a href="%s" target="_%s">%s</a>', $this->pmf_lang['msgInfo'], $item['link'], $item['target'], $item['linkTitle']);
         }
         $output .= sprintf('
             <div class="date">%s</div>', $date->format(PMF_Date::createIsoDate($item['date'])));
     }
     return '' == $output ? $this->pmf_lang['msgNoNews'] : $output;
 }
开发者ID:maggiofrancesco,项目名称:phpMyFAQ,代码行数:29,代码来源:News.php

示例6: foreach

    echo $PMF_LANG['ad_sess_session'];
    ?>
</th>
            </tr>
        </thead>
        <tbody>
<?php 
    foreach ($sessiondata as $sid => $data) {
        ?>
            <tr>
                <td><?php 
        echo $data['ip'];
        ?>
</td>
                <td><?php 
        echo $date->format(date("Y-m-d H:i", $data['time']));
        ?>
</td>
                <td><a href="?action=viewsession&amp;id=<?php 
        echo $sid;
        ?>
"><?php 
        echo $sid;
        ?>
</a></td>
            </tr>
<?php 
    }
    ?>
        </tbody>
        </table>
开发者ID:kapljr,项目名称:Jay-Kaplan-Farmingdale-BCS-Projects,代码行数:31,代码来源:stat.browser.php

示例7: printf

            print $faqcomment['record_id'];
            ?>
" type="checkbox" />
            </td>
            <td>
                <span style="font-weight: bold;">
                    <a href="mailto:<?php 
            print $faqcomment['email'];
            ?>
">
                        <?php 
            print $faqcomment['username'];
            ?>
                    </a> |
                    <?php 
            print PMF_Date::format(date('Y-m-d H:i', $faqcomment['date']));
            ?>
 |
                    <a href="<?php 
            printf("../?action=artikel&cat=%d&id=%d&artlang=%s", $faqcomment['category_id'], $faqcomment['record_id'], $LANGCODE);
            ?>
">
                        <?php 
            print $faq->getRecordTitle($faqcomment['record_id']);
            ?>
                    </a>
                </span><br/>
                <?php 
            print PMF_String::htmlspecialchars($faqcomment['content']);
            ?>
            </td>
开发者ID:atlcurling,项目名称:tkt,代码行数:31,代码来源:record.comments.php

示例8: str_replace

            print str_replace("\"", "´", $record['title']);
            ?>
'">
                    <?php 
            print $record['title'];
            ?>
                </a>
<?php 
            if (isset($numCommentsByFaq[$record['id']])) {
                printf('<br/>(<a href="?action=comments#record_id_%d">%d %s</a>)', $record['id'], $numCommentsByFaq[$record['id']], $PMF_LANG['ad_start_comments']);
            }
            ?>
</td>
            <td style="width: 48px;">
                <?php 
            print PMF_Date::format($record['date']);
            ?>
            </td>
            <td style="width: 96px;">
                <?php 
            print $linkverifier->getEntryStateHTML($record['id'], $record['lang']);
            ?>
            </td>
            <td style="width: 16px;">
                <a href="javascript:void(0);"
                   onclick="javascript:deleteRecord(<?php 
            print $record['id'];
            ?>
, '<?php 
            print $record['lang'];
            ?>
开发者ID:atlcurling,项目名称:tkt,代码行数:31,代码来源:record.show.php

示例9: printf

            print $faqcomment['record_id'];
            ?>
" type="checkbox" />
            </td>
            <td>
                <span style="font-weight: bold;">
                    <a href="mailto:<?php 
            print $faqcomment['email'];
            ?>
">
                        <?php 
            print $faqcomment['username'];
            ?>
                    </a> |
                    <?php 
            print $date->format(date('Y-m-d H:i', $faqcomment['date']));
            ?>
 |
                    <a href="<?php 
            printf("../?action=artikel&cat=%d&id=%d&artlang=%s", $faqcomment['category_id'], $faqcomment['record_id'], $LANGCODE);
            ?>
">
                        <?php 
            print $faq->getRecordTitle($faqcomment['record_id']);
            ?>
                    </a>
                </span><br/>
                <?php 
            print PMF_String::htmlspecialchars($faqcomment['content']);
            ?>
            </td>
开发者ID:maggiofrancesco,项目名称:phpMyFAQ,代码行数:31,代码来源:record.comments.php

示例10: round

    echo $danz != 0 ? round($vanz / $danz, 2) : 0;
    ?>
</td>
            </tr>
            <tr>
                <td><?php 
    echo $PMF_LANG["ad_stat_fien"];
    ?>
:</td>
                <td>
<?php 
    if (is_file(PMF_ROOT_DIR . "/data/tracking" . date("dmY", $first))) {
        $fp = @fopen(PMF_ROOT_DIR . "/data/tracking" . date("dmY", $first), "r");
        list($dummy, $dummy, $dummy, $dummy, $dummy, $dummy, $dummy, $qstamp) = fgetcsv($fp, 1024, ";");
        fclose($fp);
        echo $date->format(date('Y-m-d H:i', $qstamp));
    } else {
        echo $PMF_LANG["ad_sess_noentry"];
    }
    ?>
                </td>
            </tr>
            <tr>
                <td><?php 
    echo $PMF_LANG["ad_stat_laen"];
    ?>
:</td>
                <td>
<?php 
    if (is_file(PMF_ROOT_DIR . "/data/tracking" . date("dmY", $last))) {
        $fp = fopen(PMF_ROOT_DIR . "/data/tracking" . date("dmY", $last), "r");
开发者ID:kapljr,项目名称:Jay-Kaplan-Farmingdale-BCS-Projects,代码行数:31,代码来源:stat.main.php

示例11: printOpenQuestions

 /**
  * Prints the open questions as a XHTML table
  *
  * @return  string
  * @access  public
  * @since   2002-09-17
  * @author  Thorsten Rinne <thorsten@phpmyfaq.de>
  */
 function printOpenQuestions()
 {
     global $sids, $category;
     $query = sprintf("\n            SELECT\n                COUNT(*) AS num\n            FROM\n                %sfaqquestions\n            WHERE\n                is_visible != 'Y'", SQLPREFIX);
     $result = $this->db->query($query);
     $row = $this->db->fetch_object($result);
     $numOfInvisibles = $row->num;
     if ($numOfInvisibles > 0) {
         $extraout = sprintf('<tr><td colspan="3"><hr />%s%s</td></tr>', $this->pmf_lang['msgQuestionsWaiting'], $numOfInvisibles);
     } else {
         $extraout = '';
     }
     $query = sprintf("\n            SELECT\n                *\n            FROM\n                %sfaqquestions\n            WHERE\n                is_visible = 'Y'\n            ORDER BY\n                created ASC", SQLPREFIX);
     $result = $this->db->query($query);
     $output = '';
     if ($result && $this->db->num_rows($result) > 0) {
         while ($row = $this->db->fetch_object($result)) {
             $output .= '<tr class="openquestions">';
             $output .= sprintf('<td valign="top" nowrap="nowrap">%s<br /><a href="mailto:%s">%s</a></td>', PMF_Date::format(PMF_Date::createIsoDate($row->created)), PMF_Mail::safeEmail($row->email), $row->username);
             $output .= sprintf('<td valign="top"><strong>%s:</strong><br />%s</td>', isset($category->categoryName[$row->category_id]['name']) ? $category->categoryName[$row->category_id]['name'] : '', strip_tags($row->question));
             $output .= sprintf('<td valign="top"><a href="?%saction=add&amp;question=%d&amp;cat=%d">%s</a></td>', $sids, $row->id, $row->category_id, $this->pmf_lang['msg2answer']);
             $output .= '</tr>';
         }
     } else {
         $output = sprintf('<tr><td colspan="3">%s</td></tr>', $this->pmf_lang['msgNoQuestionsAvailable']);
     }
     return $output . $extraout;
 }
开发者ID:atlcurling,项目名称:tkt,代码行数:36,代码来源:Faq.php

示例12: sprintf

if ($user->perm->checkRight($user->getUserId(), 'editbt')) {
    $editThisEntry = sprintf('<a href="%sadmin/index.php?action=editentry&amp;id=%d&amp;lang=%s">%s</a>', PMF_Link::getSystemRelativeUri('index.php'), $recordId, $lang, $PMF_LANG['ad_entry_edit_1'] . ' ' . $PMF_LANG['ad_entry_edit_2']);
}
// Is the faq expired?
$expired = date('YmdHis') > $faq->faqRecord['dateEnd'];
// Does the user have the right to add a comment?
if (-1 === $user->getUserId() && !$faqConfig->get('records.allowCommentsForGuests') || $faq->faqRecord['active'] === 'no' || 'n' == $faq->faqRecord['comment'] || $expired) {
    $commentMessage = $PMF_LANG['msgWriteNoComment'];
} else {
    $commentMessage = sprintf("%s<a href=\"javascript:void(0);\" onclick=\"javascript:\$('#commentForm').show();\">%s</a>", $PMF_LANG['msgYouCan'], $PMF_LANG['msgWriteComment']);
}
$translationUrl = sprintf(str_replace('%', '%%', PMF_Link::getSystemRelativeUri('index.php')) . 'index.php?%saction=translate&amp;cat=%s&amp;id=%d&amp;srclang=%s', $sids, $currentCategory, $recordId, $lang);
if (!empty($switchLanguage)) {
    $tpl->parseBlock('writeContent', 'switchLanguage', array('msgChangeLanguage' => $PMF_LANG['msgLangaugeSubmit']));
}
if ($user->perm->checkRight($user->getUserId(), 'addtranslation')) {
    $tpl->parseBlock('writeContent', 'addTranslation', array('msgTranslate' => $PMF_LANG['msgTranslate']));
}
if ('-' !== $faqTagging->getAllLinkTagsById($recordId)) {
    $tpl->parseBlock('writeContent', 'tagsAvailable', array('renderTags' => $PMF_LANG['msg_tags'] . ': ' . $faqTagging->getAllLinkTagsById($recordId)));
}
if ('' !== $htmlAllCategories) {
    $tpl->parseBlock('writeContent', 'relatedCategories', array('renderRelatedCategoriesHeader' => $PMF_LANG['msgArticleCategories'], 'renderRelatedCategories' => $htmlAllCategories));
}
if ('' !== $relatedFaqs) {
    $tpl->parseBlock('writeContent', 'relatedFaqs', array('renderRelatedArticlesHeader' => $PMF_LANG['msg_related_articles'], 'renderRelatedArticles' => $relatedFaqs));
}
$date = new PMF_Date($faqConfig);
$captchaHelper = new PMF_Helper_Captcha($faqConfig);
$tpl->parse('writeContent', array('baseHref' => $faqSystem->getSystemUri($faqConfig), 'writeRubrik' => $categoryName, 'solution_id' => $faq->faqRecord['solution_id'], 'solution_id_link' => PMF_Link::getSystemRelativeUri() . '?solution_id=' . $faq->faqRecord['solution_id'], 'writeThema' => $question, 'writeContent' => $answer, 'writeDateMsg' => '<dt>' . $PMF_LANG['msgLastUpdateArticle'] . '</dt><dd>' . $date->format($faq->faqRecord['date']) . '</dd>', 'writeRevision' => '<dt>' . $PMF_LANG['ad_entry_revision'] . ':</dt><dd>1.' . $faq->faqRecord['revision_id'] . '</dd>', 'writeAuthor' => '<dt>' . $PMF_LANG['msgAuthor'] . ':</dt><dd>' . $faq->faqRecord['author'] . '</dd>', 'editThisEntry' => $editThisEntry, 'translationUrl' => $translationUrl, 'languageSelection' => PMF_Language::selectLanguages($LANGCODE, false, $arrLanguage, 'translation'), 'msgTranslateSubmit' => $PMF_LANG['msgTranslateSubmit'], 'saveVotingPATH' => sprintf(str_replace('%', '%%', PMF_Link::getSystemRelativeUri('index.php')) . 'index.php?%saction=savevoting', $sids), 'saveVotingID' => $recordId, 'saveVotingIP' => $_SERVER['REMOTE_ADDR'], 'msgAverageVote' => $PMF_LANG['msgAverageVote'], 'renderVotingStars' => '', 'printVotings' => $faqRating->getVotingResult($recordId), 'switchLanguage' => $switchLanguage, 'msgVoteUseability' => $PMF_LANG['msgVoteUseability'], 'msgVoteBad' => $PMF_LANG['msgVoteBad'], 'msgVoteGood' => $PMF_LANG['msgVoteGood'], 'msgVoteSubmit' => $PMF_LANG['msgVoteSubmit'], 'writeCommentMsg' => $commentMessage, 'msgWriteComment' => $PMF_LANG['msgWriteComment'], 'id' => $recordId, 'lang' => $lang, 'msgCommentHeader' => $PMF_LANG['msgCommentHeader'], 'msgNewContentName' => $PMF_LANG['msgNewContentName'], 'msgNewContentMail' => $PMF_LANG['msgNewContentMail'], 'defaultContentMail' => $user instanceof PMF_User_CurrentUser ? $user->getUserData('email') : '', 'defaultContentName' => $user instanceof PMF_User_CurrentUser ? $user->getUserData('display_name') : '', 'msgYourComment' => $PMF_LANG['msgYourComment'], 'msgNewContentSubmit' => $PMF_LANG['msgNewContentSubmit'], 'captchaFieldset' => $captchaHelper->renderCaptcha($captcha, 'writecomment', $PMF_LANG['msgCaptcha'], $auth), 'writeComments' => $faqComment->getComments($recordId, PMF_Comment::COMMENT_TYPE_FAQ), 'msg_about_faq' => $PMF_LANG['msg_about_faq']));
$tpl->merge('writeContent', 'index');
开发者ID:ae120,项目名称:phpMyFAQ,代码行数:31,代码来源:artikel.php

示例13: printf

            print str_replace("\"", "´", $record['title']);
            ?>
'">
                    <?php 
            print $record['title'];
            ?>
                </a>
<?php 
            if (isset($numCommentsByFaq[$record['id']])) {
                printf('<br/><a class="label label-inverse" href="?action=comments#record_id_%d">%d %s</a>', $record['id'], $numCommentsByFaq[$record['id']], $PMF_LANG['ad_start_comments']);
            }
            ?>
</td>
            <td style="width: 48px;">
                <?php 
            print $date->format($record['date']);
            ?>
            </td>
            <td style="width: 96px;">
                <?php 
            print $linkverifier->getEntryStateHTML($record['id'], $record['lang']);
            ?>
            </td>
            <td style="width: 16px;">
                <a class="btn btn-info" href="?action=copyentry&amp;id=<?php 
            print $record['id'];
            ?>
&amp;lang=<?php 
            print $record['lang'];
            ?>
"
开发者ID:kapljr,项目名称:Jay-Kaplan-Farmingdale-BCS-Projects,代码行数:31,代码来源:record.show.php

示例14: PMF_Glossary

$newsHeader = $news['header'];
// Add Glossary entries
$oGlossary = new PMF_Glossary();
$newsContent = $oGlossary->insertItemsIntoContent($newsContent);
$newsHeader = $oGlossary->insertItemsIntoContent($newsHeader);
// Add information link if existing
if (strlen($news['link']) > 0) {
    $newsContent .= sprintf('</p><p>%s<a href="%s" target="%s">%s</a>', $PMF_LANG['msgInfo'], $news['link'], $news['target'], $news['linkTitle']);
}
// Show link to edit the news?
$editThisEntry = '';
if (isset($permission['editnews'])) {
    $editThisEntry = sprintf('<a href="%sadmin/index.php?action=news&amp;do=edit&amp;id=%d">%s</a>', PMF_Link::getSystemRelativeUri('index.php'), $newsId, $PMF_LANG['ad_menu_news_edit']);
}
// Is the news item expired?
$expired = date('YmdHis') > $news['dateEnd'];
// Does the user have the right to add a comment?
if (!$news['active'] || !$news['allowComments'] || $expired) {
    $commentMessage = $PMF_LANG['msgWriteNoComment'];
} else {
    $commentMessage = sprintf('<a href="javascript:void(0);" onclick="javascript:$(\'#commentForm\').show();">%s</a>', $PMF_LANG['newsWriteComment']);
}
// date of news entry
if ($news['active'] && !$expired) {
    $newsDate = sprintf('%s<span id="newsLastUpd">%s</span>', $PMF_LANG['msgLastUpdateArticle'], PMF_Date::format($news['date']));
} else {
    $newsDate = '';
}
// Set the template variables
$tpl->processTemplate('writeContent', array('writeNewsHeader' => $newsMainHeader, 'writeNewsRSS' => $newsFeed, 'writeHeader' => $newsHeader, 'writeContent' => $newsContent, 'writeDateMsg' => $newsDate, 'writeAuthor' => $news['active'] && !$expired ? $PMF_LANG['msgAuthor'] . ': ' . $news['authorName'] : '', 'editThisEntry' => $editThisEntry, 'writeCommentMsg' => $commentMessage, 'msgWriteComment' => $PMF_LANG['newsWriteComment'], 'newsId' => $newsId, 'newsLang' => $news['lang'], 'msgCommentHeader' => $PMF_LANG['msgCommentHeader'], 'msgNewContentName' => $PMF_LANG['msgNewContentName'], 'msgNewContentMail' => $PMF_LANG['msgNewContentMail'], 'defaultContentMail' => $user instanceof PMF_User_CurrentUser ? $user->getUserData('email') : '', 'defaultContentName' => $user instanceof PMF_User_CurrentUser ? $user->getUserData('display_name') : '', 'msgYourComment' => $PMF_LANG['msgYourComment'], 'msgNewContentSubmit' => $PMF_LANG['msgNewContentSubmit'], 'captchaFieldset' => PMF_Helper_Captcha::getInstance()->renderCaptcha($captcha, 'writecomment', $PMF_LANG['msgCaptcha']), 'writeComments' => $comment->getComments($newsId, PMF_Comment::COMMENT_TYPE_NEWS)));
$tpl->includeTemplate('writeContent', 'index');
开发者ID:atlcurling,项目名称:tkt,代码行数:31,代码来源:news.php

示例15: sprintf

        $htmlAllCategories .= sprintf("<li>%s</li>\n", $path);
    }
    $htmlAllCategories .= '            </ul>';
    $htmlAllCategories .= '    </div>';
}
// Related FAQs
$faqSearchResult->reviewResultset($faqRelation->getAllRelatedById($faq->faqRecord['id'], $faq->faqRecord['title'], $faq->faqRecord['keywords']));
$relatedFaqs = PMF_Helper_Search::getInstance()->renderRelatedFaqs($faqSearchResult, $faq->faqRecord['id']);
// Show link to edit the faq?
$editThisEntry = '';
if (isset($permission['editbt']) && $permission['editbt']) {
    $editThisEntry = sprintf('<a href="%sadmin/index.php?action=editentry&amp;id=%d&amp;lang=%s">%s</a>', PMF_Link::getSystemRelativeUri('index.php'), $faq->faqRecord['id'], $lang, $PMF_LANG['ad_entry_edit_1'] . ' ' . $PMF_LANG['ad_entry_edit_2']);
}
// Is the faq expired?
$expired = date('YmdHis') > $faq->faqRecord['dateEnd'];
// Does the user have the right to add a comment?
if ($faq->faqRecord['active'] != 'yes' || 'n' == $faq->faqRecord['comment'] || $expired) {
    $commentMessage = $PMF_LANG['msgWriteNoComment'];
} else {
    $commentMessage = sprintf("%s<a href=\"javascript:void(0);\" onclick=\"javascript:\$('#commentForm').show();\">%s</a>", $PMF_LANG['msgYouCan'], $PMF_LANG['msgWriteComment']);
}
$translationUrl = sprintf(str_replace('%', '%%', PMF_Link::getSystemRelativeUri('index.php')) . 'index.php?%saction=translate&amp;cat=%s&amp;id=%d&amp;srclang=%s', $sids, $currentCategory, $faq->faqRecord['id'], $lang);
if (!empty($switchLanguage)) {
    $tpl->processBlock('writeContent', 'switchLanguage', array('msgChangeLanguage' => $PMF_LANG['msgLangaugeSubmit']));
}
if (isset($permission['addtranslation']) && $permission['addtranslation']) {
    $tpl->processBlock('writeContent', 'addTranslation', array('msgTranslate' => $PMF_LANG['msgTranslate']));
}
// Set the template variables
$tpl->processTemplate('writeContent', array('writeRubrik' => $categoryName, 'solution_id' => $faq->faqRecord['solution_id'], 'writeThema' => $question, 'writeArticleCategoryHeader' => $PMF_LANG['msgArticleCategories'], 'writeArticleCategories' => $htmlAllCategories, 'writeContent' => $answer, 'writeTagHeader' => $PMF_LANG['msg_tags'] . ': ', 'writeArticleTags' => $faqTagging->getAllLinkTagsById($faq->faqRecord['id']), 'writeRelatedArticlesHeader' => $PMF_LANG['msg_related_articles'] . ': ', 'writeRelatedArticles' => $relatedFaqs, 'writeDateMsg' => $PMF_LANG['msgLastUpdateArticle'] . PMF_Date::format($faq->faqRecord['date']), 'writeRevision' => $PMF_LANG['ad_entry_revision'] . ': 1.' . $faq->faqRecord['revision_id'], 'writeAuthor' => $PMF_LANG['msgAuthor'] . ': ' . $faq->faqRecord['author'], 'editThisEntry' => $editThisEntry, 'translationUrl' => $translationUrl, 'languageSelection' => PMF_Language::selectLanguages($LANGCODE, false, $arrLanguage, 'translation'), 'msgTranslateSubmit' => $PMF_LANG['msgTranslateSubmit'], 'saveVotingPATH' => sprintf(str_replace('%', '%%', PMF_Link::getSystemRelativeUri('index.php')) . 'index.php?%saction=savevoting', $sids), 'saveVotingID' => $faq->faqRecord['id'], 'saveVotingIP' => $_SERVER['REMOTE_ADDR'], 'msgAverageVote' => $PMF_LANG['msgAverageVote'], 'printVotings' => $faqRating->getVotingResult($recordId), 'switchLanguage' => $switchLanguage, 'msgVoteUseability' => $PMF_LANG['msgVoteUseability'], 'msgVoteBad' => $PMF_LANG['msgVoteBad'], 'msgVoteGood' => $PMF_LANG['msgVoteGood'], 'msgVoteSubmit' => $PMF_LANG['msgVoteSubmit'], 'writeCommentMsg' => $commentMessage, 'msgWriteComment' => $PMF_LANG['msgWriteComment'], 'id' => $faq->faqRecord['id'], 'lang' => $lang, 'msgCommentHeader' => $PMF_LANG['msgCommentHeader'], 'msgNewContentName' => $PMF_LANG['msgNewContentName'], 'msgNewContentMail' => $PMF_LANG['msgNewContentMail'], 'defaultContentMail' => $user instanceof PMF_User_CurrentUser ? $user->getUserData('email') : '', 'defaultContentName' => $user instanceof PMF_User_CurrentUser ? $user->getUserData('display_name') : '', 'msgYourComment' => $PMF_LANG['msgYourComment'], 'msgNewContentSubmit' => $PMF_LANG['msgNewContentSubmit'], 'captchaFieldset' => PMF_Helper_Captcha::getInstance()->renderCaptcha($captcha, 'writecomment', $PMF_LANG['msgCaptcha']), 'writeComments' => $faqComment->getComments($faq->faqRecord['id'], PMF_Comment::COMMENT_TYPE_FAQ), 'msg_about_faq' => $PMF_LANG['msg_about_faq']));
$tpl->includeTemplate('writeContent', 'index');
开发者ID:atlcurling,项目名称:tkt,代码行数:31,代码来源:artikel.php


注:本文中的PMF_Date::format方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。