當前位置: 首頁>>代碼示例>>PHP>>正文


PHP Coupon::search方法代碼示例

本文整理匯總了PHP中Coupon::search方法的典型用法代碼示例。如果您正苦於以下問題:PHP Coupon::search方法的具體用法?PHP Coupon::search怎麽用?PHP Coupon::search使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在Coupon的用法示例。


在下文中一共展示了Coupon::search方法的1個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。

示例1: Coupon

<?php

$model = new Coupon();
$columns = array();
if (Yii::app()->user->isSuperadmin()) {
    $columns[] = array('name' => 'wlabel_id', 'header' => 'White Label', 'filter' => CHtml::listData(WhiteLabel::model()->findAll(), 'wlabel_id', 'name'), 'value' => '$data->p_whitelabel->name');
}
$columns[] = array('name' => 'coupon_id', 'header' => 'ID');
$columns[] = array('name' => 'headline', 'header' => 'Headline');
$columns[] = array('name' => 'redeemed', 'header' => 'Redeemed');
$columns[] = array('name' => 'redemption_rate', 'header' => 'Redemption Rate');
?>
<div id="tabs-2" class="ui-tabs-panel ui-widget-content ui-corner-bottom ui-tabs-hide">
<?php 
$this->widget('zii.widgets.grid.CGridView', array('id' => 'user-grid', 'dataProvider' => $model->search($qsForm->dateFrom, $qsForm->dateTo), 'filter' => null, 'columns' => $columns));
?>
	
	<img src="http://chart.apis.google.com/chart?chs=460x240&cht=p3&chco=BBCCED|76A4FB|3399CC|3366CC|224499|008000&chd=s:fUPPb8&chdl=Akif+Quddus|Trey+Brister|Sally+Carson|Joe+Garcia|Phuong+Nguyen|All+Others&chl=50|32|25|24|45|98&chma=|5&chtt=Redemption+Rate+By+Employee&chts=FF0000,18" width="460" height="240" alt="Redemption Rate By Employee" />

	<img src="http://chart.apis.google.com/chart?chxs=0,008000,11.5&chxt=x&chs=480x240&cht=p3&chco=BBCCED,76A4FB,3399CC,3072F3,3366CC,008000&chd=s:bNVil4&chdl=Akif+Quddus|Benny+Elder|Vincent+Trisapta|Jon+Hall|Mike+Summer|All+Others&chl=45|21|35|56|61|92&chma=0,0,5&chtt=Promotions+Redeemed+By+Employee&chts=FF0000,18" width="480" height="240" alt="Promotions Redeemed By Employee" />
	
<div class="clearfix"></div>
	
	<!-- Each Tab Ends -->
</div>
開發者ID:yasirgit,項目名稱:hotmall,代碼行數:25,代碼來源:tabPromos.php


注:本文中的Coupon::search方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。