Skip to content

Commit

Permalink
Rename class.
Browse files Browse the repository at this point in the history
 * First letter `C` is reserved for Yii core classes.

Signed-off-by: tbekos <tbekos@gmail.com>
  • Loading branch information
bekos committed Aug 3, 2012
1 parent 9291842 commit a09a29f
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
6 changes: 3 additions & 3 deletions ColumnListView.php → EColumnListView.php
@@ -1,19 +1,19 @@
<?php

/**
* ColumnListView class file.
* EColumnListView class file.
*
* @author Tasos Bekos <tbekos@gmail.com>
* @copyright Copyright &copy; 2012 Tasos Bekos
*/
/**
* ColumnListView represents a list view in multiple columns.
* EColumnListView represents a list view in multiple columns.
*
* @author Tasos Bekos <tbekos@gmail.com>
*/
Yii::import('zii.widgets.CListView');

class ColumnListView extends CListView {
class EColumnListView extends CListView {

/**
*
Expand Down
4 changes: 2 additions & 2 deletions README.md
@@ -1,4 +1,4 @@
# ColumnListView
# EColumnListView
This extension modified CListView to support multiple items per line.

Yii default CListView displays one _view item per line.
Expand All @@ -19,7 +19,7 @@ Tested with Yii 1.1.10, but should work with previous versions too.

## Example:

$this->widget('ext.widgets.ColumnListView', array(
$this->widget('ext.widgets.EColumnListView', array(
'dataProvider' => $dataProvider,
'itemView' => '_view',
'columns' => 3
Expand Down

0 comments on commit a09a29f

Please sign in to comment.