本文整理汇总了PHP中Stock::row_class方法的典型用法代码示例。如果您正苦于以下问题:PHP Stock::row_class方法的具体用法?PHP Stock::row_class怎么用?PHP Stock::row_class使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Stock
的用法示例。
在下文中一共展示了Stock::row_class方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: get_row_class
function get_row_class()
{
$classes = array(Stock::row_class());
if ($this->removed) {
$classes[] = 'row-removed';
}
if ($this->changed) {
$classes[] = 'row-changed';
}
return implode(' ', $classes);
}
示例2: array
<tr class="<?php
echo Stock::row_class();
?>
">
<td class="cell10"><input type="checkbox" name="isin[]" value="<?php
echo $transaction->isin;
?>
" /></td>
<td class="cell10">
<table width="100%" cellpadding="0" cellspacing="0" border="0">
<tr>
<td><?php
print $this->link_to($transaction->isin, array('controller' => 'titoli', 'action' => 'browse', 'id' => $transaction->isin));
?>
</td>
<td> </td>
<td align="right"><a href="<?php
echo $transaction->stock->details_url();
?>
"><img src="/img/circled_arrow.png" alt="Dettagli" /></a></td>
</tr>
</table>
</td>
<td class="cell10">
<table width="100%" cellpadding="0" cellspacing="0" border="0">
<tr>
<td><?php
print $this->link_to($transaction->stock->title, array('controller' => 'titoli', 'action' => 'browse', 'id' => $transaction->isin));
?>
</td>