Difference between #3 and #5 of
Directory independent extensions

Changes

Title unchanged

Directory independent extensions

Category unchanged

Tips

Yii version unchanged

Tags unchanged

libraries, extensions, paths

Content changed

## How to implement directory independent extensions Many people want to use downloaded extensions in their own way. As for me the most of the extensions are require me to correct [`Yii::import()`](http://www.yiiframework.com/doc/api/1.1/YiiBase/#import-detail) instructions inside their source code. All these extensions are directory dependent. To avoid athe situation described above, I suggest to implement pseudo-anonymous aliases:

```php
[...]
// create alias
Yii::setPathOfAlias($alias,$dir);
// import
another classes
Yii::import($alias.'.anotherClass');
Yii::import($alias.'.andAnoTherClass');
[...]
```

Using this technique you can create
*really* directory-independent extensions.
16 1
7 followers
Viewed: 16 886 times
Version: 1.1
Category: Tips
Written by: GOsha
Last updated by: GOsha
Created on: Nov 19, 2010
Last updated: 13 years ago
Update Article

Revisions

View all history