本文整理汇总了PHP中Gdn_Theme::BulletRow方法的典型用法代码示例。如果您正苦于以下问题:PHP Gdn_Theme::BulletRow方法的具体用法?PHP Gdn_Theme::BulletRow怎么用?PHP Gdn_Theme::BulletRow使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Gdn_Theme
的用法示例。
在下文中一共展示了Gdn_Theme::BulletRow方法的4个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: writeReactions
function writeReactions($Row)
{
$Attributes = GetValue('Attributes', $Row);
if (is_string($Attributes)) {
$Attributes = @unserialize($Attributes);
SetValue('Attributes', $Row, $Attributes);
}
Gdn::Controller()->EventArguments['ReactionTypes'] = array();
if ($ID = GetValue('CommentID', $Row)) {
$RecordType = 'comment';
} elseif ($ID = GetValue('ActivityID', $Row)) {
$RecordType = 'activity';
} else {
$RecordType = 'discussion';
$ID = GetValue('DiscussionID', $Row);
}
Gdn::Controller()->EventArguments['RecordType'] = $RecordType;
Gdn::Controller()->EventArguments['RecordID'] = $ID;
echo '<div class="Reactions">';
Gdn_Theme::BulletRow();
// Write the flags.
static $Flags = null;
if ($Flags === null) {
Gdn::Controller()->EventArguments['Flags'] =& $Flags;
Gdn::Controller()->FireEvent('Flags');
}
// Allow addons to work with flags
Gdn::Controller()->EventArguments['Flags'] =& $Flags;
Gdn::Controller()->FireEvent('BeforeFlag');
if (!empty($Flags) && is_array($Flags)) {
echo Gdn_Theme::BulletItem('Flags');
echo ' <span class="FlagMenu ToggleFlyout">';
// Write the handle.
echo Anchor(Sprite('ReactFlag', 'ReactSprite') . ' ' . Wrap(T('Flag'), 'span', array('class' => 'ReactLabel')), '', 'Hijack ReactButton-Flag FlyoutButton', array('title' => 'Flag'), true);
echo Sprite('SpFlyoutHandle', 'Arrow');
echo '<ul class="Flyout MenuItems Flags" style="display: none;">';
foreach ($Flags as $Flag) {
if (is_callable($Flag)) {
echo '<li>' . call_user_func($Flag, $Row, $RecordType, $ID) . '</li>';
} else {
echo '<li>' . ReactionButton($Row, $Flag['UrlCode']) . '</li>';
}
}
Gdn::Controller()->FireEvent('AfterFlagOptions');
echo '</ul>';
echo '</span> ';
}
Gdn::Controller()->FireEvent('AfterFlag');
Gdn::Controller()->FireEvent('AfterReactions');
echo '</div>';
Gdn::Controller()->FireEvent('Replies');
}
示例2: WriteReactions
function WriteReactions($Row, $Type = 'Comment')
{
list($RecordType, $RecordID) = RecordType($Row);
Gdn::Controller()->EventArguments['RecordType'] = strtolower($RecordType);
Gdn::Controller()->EventArguments['RecordID'] = $RecordID;
echo '<div class="Reactions">';
Gdn_Theme::BulletRow();
Gdn::Controller()->FireEvent('AfterFlag');
Gdn::Controller()->FireEvent('AfterReactions');
echo '</div>';
}
示例3: htmlspecialchars
<?php
if (!defined('APPLICATION')) {
exit;
}
$Session = Gdn::session();
?>
<div class="User" itemscope itemtype="http://schema.org/Person">
<h1 class="H"><?php
echo htmlspecialchars($this->User->Name);
echo '<span class="Gloss">';
Gdn_Theme::BulletRow();
if ($this->User->Title) {
echo Gdn_Theme::BulletItem('Title');
echo ' ' . Bullet() . ' ' . Wrap(htmlspecialchars($this->User->Title), 'span', array('class' => 'User-Title'));
}
$this->fireEvent('UsernameMeta');
echo '</span>';
?>
</h1>
<?php
if ($this->User->Admin == 2) {
echo '<div class="DismissMessage InfoMessage">', t('This is a system account and does not represent a real person.'), '</div>';
}
if ($this->User->About != '') {
echo '<div id="Status" itemprop="description">' . Wrap(Gdn_Format::Display($this->User->About));
if ($this->User->About != '' && ($Session->UserID == $this->User->UserID || $Session->checkPermission('Garden.Users.Edit'))) {
echo ' - ' . anchor(t('clear'), '/profile/clear/' . $this->User->UserID, 'Hijack');
}
echo '</div>';
}
示例4: WriteReactions
function WriteReactions($Row)
{
list($RecordType, $RecordID) = RecordType($Row);
Gdn::Controller()->EventArguments['RecordType'] = strtolower($RecordType);
Gdn::Controller()->EventArguments['RecordID'] = $RecordID;
echo '<div class="Reactions">';
Gdn_Theme::BulletRow();
// Write the flags.
static $Flags = NULL;
// Allow addons to work with flags menu
Gdn::Controller()->EventArguments['Flags'] =& $Flags;
Gdn::Controller()->FireEvent('BeforeFlag');
if (!empty($Flags)) {
echo Gdn_Theme::BulletItem('Flags');
echo ' <span class="FlagMenu ToggleFlyout">';
// Write the handle.
echo Anchor(Sprite('ReactFlag', 'ReactSprite') . ' ' . Wrap(T('Flag'), 'span', array('class' => 'ReactLabel')), '', 'Hijack ReactButton-Flag FlyoutButton', array('title' => 'Flag'), TRUE);
echo Sprite('SpFlyoutHandle', 'Arrow');
echo '<ul class="Flyout MenuItems Flags" style="display: none;">';
Gdn::Controller()->FireEvent('AfterFlagOptions');
echo '</ul>';
echo '</span> ';
}
Gdn::Controller()->FireEvent('AfterFlag');
Gdn::Controller()->FireEvent('AfterReactions');
echo '</div>';
Gdn::Controller()->FireEvent('Replies');
}