1: <?php
2: /*****************************************************************************************
3: * X2Engine Open Source Edition is a customer relationship management program developed by
4: * X2Engine, Inc. Copyright (C) 2011-2016 X2Engine Inc.
5: *
6: * This program is free software; you can redistribute it and/or modify it under
7: * the terms of the GNU Affero General Public License version 3 as published by the
8: * Free Software Foundation with the addition of the following permission added
9: * to Section 15 as permitted in Section 7(a): FOR ANY PART OF THE COVERED WORK
10: * IN WHICH THE COPYRIGHT IS OWNED BY X2ENGINE, X2ENGINE DISCLAIMS THE WARRANTY
11: * OF NON INFRINGEMENT OF THIRD PARTY RIGHTS.
12: *
13: * This program is distributed in the hope that it will be useful, but WITHOUT
14: * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
15: * FOR A PARTICULAR PURPOSE. See the GNU Affero General Public License for more
16: * details.
17: *
18: * You should have received a copy of the GNU Affero General Public License along with
19: * this program; if not, see http://www.gnu.org/licenses or write to the Free
20: * Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
21: * 02110-1301 USA.
22: *
23: * You can contact X2Engine, Inc. P.O. Box 66752, Scotts Valley,
24: * California 95067, USA. or at email address contact@x2engine.com.
25: *
26: * The interactive user interfaces in modified source and object code versions
27: * of this program must display Appropriate Legal Notices, as required under
28: * Section 5 of the GNU Affero General Public License version 3.
29: *
30: * In accordance with Section 7(b) of the GNU Affero General Public License version 3,
31: * these Appropriate Legal Notices must retain the display of the "Powered by
32: * X2Engine" logo. If the display of the logo is not reasonably feasible for
33: * technical reasons, the Appropriate Legal Notices must display the words
34: * "Powered by X2Engine".
35: *****************************************************************************************/
36:
37: class X2DataColumnGeneric extends CDataColumn {
38:
39: /**
40: * @var string $filterType
41: */
42: public $filterType;
43:
44: public $width;
45:
46: public function init () {
47: // allows width to be set for column using width property
48: if ($this->width) {
49: $this->headerHtmlOptions['style'] = isset ($this->headerHtmlOptions['style']) ?
50: $this->headerHtmlOptions['style'] : '';
51: $this->htmlOptions['style'] = isset ($this->htmlOptions['style']) ?
52: $this->htmlOptions['style'] : '';
53: $this->headerHtmlOptions['style'] .= 'width: '.$this->width.';';
54: $this->htmlOptions['style'] .= 'width: '.$this->width.';';
55: }
56: return parent::init ();
57: }
58:
59: /**
60: * This method is Copyright (c) 2008-2014 by Yii Software LLC
61: * http://www.yiiframework.com/license/
62: */
63: public function renderDataCell($row)
64: {
65: $data=$this->grid->dataProvider->data[$row];
66: $options=$this->htmlOptions;
67: /* x2modstart */
68: $options = $this->evaluateHtmlOptions ($options, $data);
69: /* x2modend */
70: if($this->cssClassExpression!==null)
71: {
72: $class=$this->evaluateExpression($this->cssClassExpression,array('row'=>$row,'data'=>$data));
73: if(!empty($class))
74: {
75: if(isset($options['class']))
76: $options['class'].=' '.$class;
77: else
78: $options['class']=$class;
79: }
80: }
81: echo CHtml::openTag('td',$options);
82: $this->renderDataCellContent($row,$data);
83: echo '</td>';
84: }
85:
86: /**
87: * Allows php snippets to be included in html option values
88: */
89: public function evaluateHtmlOptions (array $options, $data) {
90: foreach ($options as $attr => $val) {
91: if (preg_match ('/^php:/', $val)) {
92: $val = preg_replace ('/^php:/', '', $val);
93: $options[$attr] = $this->evaluateExpression ($val, array (
94: 'data' => $data,
95: ));
96: }
97: }
98: return $options;
99: }
100:
101: /**
102: * Renders the filter cell content.
103: * This method will render the {@link filter} as is if it is a string.
104: * If {@link filter} is an array, it is assumed to be a list of options, and a dropdown selector will be rendered.
105: * Otherwise if {@link filter} is not false, a text field is rendered.
106: * @since 1.1.1
107: * This method is Copyright (c) 2008-2014 by Yii Software LLC
108: * http://www.yiiframework.com/license/
109: */
110: protected function renderFilterCellContent()
111: {
112: if(is_string($this->filter)) {
113: echo $this->filter;
114: } elseif($this->filter!==false && $this->grid->filter!==null && $this->name!==null &&
115: strpos($this->name,'.')===false) {
116:
117: /* x2modstart */
118: if (isset ($this->filterType)) {
119: echo $this->renderFilterCellByType ();
120: /* x2modend */
121: } elseif(is_array($this->filter)) {
122: /* x2modstart */
123: // removed prompt
124: echo CHtml::activeDropDownList(
125: $this->grid->filter, $this->name, $this->filter,
126: array('id'=>false));
127: /* x2modend */
128: } elseif($this->filter===null) {
129: echo CHtml::activeTextField($this->grid->filter, $this->name, array('id'=>false));
130: }
131: } else {
132: parent::renderFilterCellContent();
133: }
134: }
135:
136: public function renderFilterCellByType () {
137: $model = $this->grid->filter;
138: $fieldName = $this->name;
139: switch ($this->filterType) {
140: case 'date':
141: $model->$fieldName = Formatter::parseDate ($model->$fieldName);
142: return X2Html::activeDatePicker ($model, $this->name);
143: break;
144: case 'dateTime':
145: $model->$fieldName = Formatter::parseDate ($model->$fieldName);
146: return X2Html::activeDatePicker ($model, $this->name, array (), 'datetime');
147: break;
148: }
149: }
150: }
151:
152: ?>
153: