本文整理汇总了PHP中thebuggenie\core\framework\Settings::isGravatarsEnabled方法的典型用法代码示例。如果您正苦于以下问题:PHP Settings::isGravatarsEnabled方法的具体用法?PHP Settings::isGravatarsEnabled怎么用?PHP Settings::isGravatarsEnabled使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类thebuggenie\core\framework\Settings
的用法示例。
在下文中一共展示了Settings::isGravatarsEnabled方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: usesGravatar
/**
* Return whether the user uses gravatar for avatars
*
* @return boolean
*/
public function usesGravatar()
{
if (!framework\Settings::isGravatarsEnabled()) {
return false;
}
if ($this->isGuest()) {
return false;
}
return (bool) $this->_use_gravatar;
}
示例2: __
disabled<?php
}
?>
>
<option value=1<?php
if (\thebuggenie\core\framework\Settings::isGravatarsEnabled()) {
?>
selected<?php
}
?>
><?php
echo __('Users icons will use the gravatar.com service');
?>
</option>
<option value=0<?php
if (!\thebuggenie\core\framework\Settings::isGravatarsEnabled()) {
?>
selected<?php
}
?>
><?php
echo __('Users will use default user icons');
?>
</option>
</select>
<?php
echo config_explanation(__('Select whether to use the %gravatar.com user icon service for user avatars, or just use the default ones', array('%gravatar.com' => link_tag('http://www.gravatar.com', 'gravatar.com'))));
?>
</td>
</tr>
<tr>