本文整理汇总了PHP中Clients::getClientInfo方法的典型用法代码示例。如果您正苦于以下问题:PHP Clients::getClientInfo方法的具体用法?PHP Clients::getClientInfo怎么用?PHP Clients::getClientInfo使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Clients
的用法示例。
在下文中一共展示了Clients::getClientInfo方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1:
</section>
<section>
<div class="container">
<div class="row">
<div class="masonry-items">
<?php
foreach ($clients as $id) {
?>
<div class="masonry-item item">
<div class="thumb">
<a href="#client-modal" data-toggle="modal" data-target="#client-modal" data-id="<?php
echo $id;
?>
">
<img src="<?php
if ($client->getClientInfo($id, 'logo') != "") {
echo "images/clients/" . $client->getClientInfo($id, 'logo');
} else {
echo noimage;
}
?>
" alt="<?php
echo $client->getClientInfo($id, 'name');
?>
" class="img-responsive" width="476" class="mb-10">
</a>
</div>
<div class="hidden" id="client_<?php
echo $id;
?>
">
示例2: foreach
<th>Name</th>
<th>Action</th>
</tr>
</thead>
<tbody>
<?php
$i = 0;
foreach ($item_list as $item) {
?>
<tr>
<td><?php
echo ++$i;
?>
</td>
<td><?php
echo $obj->getClientInfo($item, 'name');
?>
</td>
<td>
<a href="<?php
echo $config->site_address;
?>
our-partners-admin/edit/<?php
echo $item;
?>
" class="btn btn-primary glyphicon glyphicon-edit" title="Edit" data-toggle="tooltip"></a>
<a href="<?php
echo Comman::getController('clients');
?>
?action=delete&id=<?php
echo $item;