Define general array and variable and call it to anywhere in application

Comparing #1 with #2

Revision #2 was created by Maurizio Domba Cerin Maurizio Domba Cerin on Jan 17, 2013, 11:23:23 AM.

fixed code spacing

Content

[...]
```php
Yii::app()->params['TEXT_ACTIVE'] = 'Active'; //1 for active

Yii::app()->params['AD_LAYOUT_POISITION'] = array(
"1" => array( 'width' => '1000',  'height' => '150' ),
 
"2" => array(
 
),
 
"2" => array(
 
'width' => '200', 'height' => '150' ),
 
),
 
"3" => array( 'width' => '1000', 'height' => '150' ),
 
),
 
"4" => array( 'width' => '200', 'height' => '150' ),
 

 
),
 
);
```

Now include this file in protected/config/main.php

```php
[...]