本文整理汇总了PHP中util::is_adm方法的典型用法代码示例。如果您正苦于以下问题:PHP util::is_adm方法的具体用法?PHP util::is_adm怎么用?PHP util::is_adm使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类util
的用法示例。
在下文中一共展示了util::is_adm方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: w_news_row
function w_news_row($ary) : string
{
extract($ary);
$ext = util::is_adm() ? ' -
<a href="?o=w_news&m=update&i=' . $id . '" title="Update">E</a>
<a href="?o=w_news&m=delete&i=' . $id . '" title="Delete" onClick="javascript: return confirm(\'Are you sure you want to remove ' . $id . '?\')">X</a>' : '';
return '
<tr><td colspan="2"><hr></td></tr>
<tr>
<td><a href="?o=w_news&m=read&i=' . $id . '">' . $title . '</a></td>
<td style="text-align:right">
<small>
by <b>' . $author . '</b> - <i>' . util::now($updated) . '</i>' . $ext . '
</small>
</td>
</tr>
<tr>
<td colspan="2"><p>' . nl2br($content) . '</p></td>
</tr>';
}
示例2: w_news_row
function w_news_row($ary) : string
{
extract($ary);
$ext = util::is_adm() ? '
<div class="col-md-12 text-right">
<a class="btn btn-success btn-xs" href="?o=w_news&m=update&i=' . $id . '" title="Edit">Edit</a>
</div>' : '';
$ext2 = util::is_adm() ? '
<a class="btn btn-success btn-xs" href="?o=w_news&m=update&i=' . $id . '" title="Edit">Edit</a>' : '';
// <a class="btn btn-danger btn-xs" href="?o=w_news&m=delete&i=' . $id . '" title="Delete" onClick="javascript: return confirm(\'Are you sure you want to remove '.$id.'?\')">X</a>' : '';
return '
<div class="row">
<div class="col-md-12">
<h3><a href="?o=w_news&m=read&i=' . $id . '">' . $title . '</a><h3>
</div>
<div class="col-md-12"><p>' . nl2br($content) . '</p>
</div>
<div class="col-md-12 text-right">
<small>
<i>' . util::now($updated) . ' by ' . $author . '</i>' . $ext2 . '
</small>
</div>
</div>';
}
示例3: declare
<?php
declare (strict_types=1);
error_log(__FILE__);
// bootstrap/w/news/item.php 20151030 (C) 2015-2016 Mark Constable <markc@renta.net> (AGPL-3.0)
$ext = util::is_adm() ? '
<br>
<div class="col-md-12 text-right">' . $this->a('?o=w_news', '« Back', 'default') . '
<a class="btn btn-success" href="?o=w_news&m=update&i=' . $id . '" title="Update">Edit</a>
<a class="btn btn-danger" href="?o=w_news&m=delete&i=' . $id . '" title="Delete" onClick="javascript: return confirm(\'Are you sure you want to remove ' . $id . '?\')">Delete</a>
</div>' : '';
$ext2 = util::is_adm() ? '
<br><a href="?o=w_news&m=update&i=' . $id . '" title="Edit">Edit</a>' : '';
return '
<h2>
<i class="fa fa-newspaper-o fa-fw"></i>
<a href="?o=w_news">' . $title . '</a>
</h2>
<div class="row">
<div class="col-md-2 text-center">
<small>
<em>' . util::now($updated) . ' by ' . $author . '</em>' . $ext2 . '
</small>
</div>
<div class="col-md-10">' . nl2br($content) . '
</div>
</div>';