Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/crisu83/yii-globals

Global shorthand functions for commonly used Yii methods.
https://github.com/crisu83/yii-globals

Last synced: 23 days ago
JSON representation

Global shorthand functions for commonly used Yii methods.

Awesome Lists containing this project

README

        

yii-globals
===========

Global shorthand functions for commonly used Yii methods.

## Setup

Before you can start using these shorthand functions in your code you need to include the globals.php file in your index.php.

```php
.....
require_once($yii);
require_once('path/to/globals.php');
Yii::createWebApplication($config)->run();
```