2016-07-14 52 views
0

我想從我的控制器錨如何使用笨

內顯示的通知在我的控制器顯示錨內通知我有這個數組保存到

$data['table_data']; 

,然後由調用$data_table

$this->table->add_row($cellCl,$cellT,$cellE,$cellA,$cellTR, 
anchor('notifications/print/'.$reg->id,'.',array('class'=>'img1')).' 
'.anchor('notifications/write/'.$reg->id,'.',array('class'=>'img2')).' 
'.anchor('notifications/read/'.$reg->id,'.',array('class'=>'notification')) 
); 

顯示在我的觀點,我想展示一些東西像什麼是錨內的片段,顯示IM通知年齡(而不是顯示通知圖像)。

a.fa-globe { 
 
    position: relative; 
 
    font-size: 2em; 
 
    color: grey; 
 
    cursor: pointer; 
 
} 
 
span.fa-comment { 
 
    position: absolute; 
 
    font-size: 0.6em; 
 
    top: -4px; 
 
    color: red; 
 
    right: -4px; 
 
} 
 
span.num { 
 
    position: absolute; 
 
    font-size: 0.3em; 
 
    top: 1px; 
 
    color: #fff; 
 
    right: 2px; 
 
}
<link href="http://maxcdn.bootstrapcdn.com/font-awesome/4.2.0/css/font-awesome.min.css" rel="stylesheet" /> 
 

 
<a class="fa fa-globe"> 
 
    <span class="fa fa-comment"></span> 
 
    <span class="num">2</span> 
 
</a>

回答

2

的第二個參數的函數anchor通常是,在<a>元件之間顯示的文本。

EG

echo anchor('url', 'Text'); // <a href="url">Text</a> 

但是,這並不僅僅侷限於文本內容。你也可以放入HTML。

EG

echo anchor('url', '<span style="color: red">Test</span>'); 
// <a href="url"><span style="color: red">Test</span></a> 

所以,你可以添加到<span class="fa fa-comment"></span><span class="num">2</span>anchor的第二個參數把它呈現HTML。