本文整理汇总了PHP中Survey::has方法的典型用法代码示例。如果您正苦于以下问题:PHP Survey::has方法的具体用法?PHP Survey::has怎么用?PHP Survey::has使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Survey
的用法示例。
在下文中一共展示了Survey::has方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: execute
/**
* Main method.
*
* @since 0.1
*
* @param string $arg
*/
public function execute($subPage)
{
if (!parent::execute($subPage)) {
return;
}
if (is_null($subPage) || trim($subPage) === '') {
$this->getOutput()->redirect(SpecialPage::getTitleFor('Surveys')->getLocalURL());
} else {
$subPage = trim($subPage);
if (Survey::has(array('name' => $subPage))) {
$survey = Survey::newFromName($subPage);
$this->displayNavigation(array(wfMsgExt('survey-navigation-edit', 'parseinline', $survey->getField('name')), wfMsgExt('survey-navigation-take', 'parseinline', $survey->getField('name')), wfMsgExt('survey-navigation-list', 'parseinline')));
$this->displayStats($survey);
} else {
$this->showError('surveys-surveystats-nosuchsurvey');
}
}
}
示例2: onArticleViewHeader
/**
* Hook to insert things into article headers.
*
* @since 0.1
*
* @param Article &$article
* @param boolean $outputDone
* @param boolean $useParserCache
*
* @return true
*/
public static function onArticleViewHeader(Article &$article, &$outputDone, &$useParserCache)
{
if (!Survey::has(array('enabled' => 1))) {
return true;
}
$surveys = Survey::select(array('id', 'namespaces', 'ratio', 'expiry', 'min_pages'), array('enabled' => 1, 'user_type' => Survey::getTypesForUser($GLOBALS['wgUser'])));
foreach ($surveys as $survey) {
if (count($survey->getField('namespaces')) == 0) {
$nsValid = true;
} else {
$nsValid = in_array($article->getTitle()->getNamespace(), $survey->getField('namespaces'));
}
if ($nsValid) {
$GLOBALS['wgOut']->addWikiText(Xml::element('survey', array('id' => $survey->getId(), 'ratio' => $survey->getField('ratio'), 'expiry' => $survey->getField('expiry'), 'min-pages' => $survey->getField('min_pages'))));
}
}
return true;
}