Package system Yii mampunyai tugas sebagai helper untuk fungsi-fungsi umum framework. Package system Yii terdiri dari 2 class
- YiiBase class
Lokasi file: framework/yii.php
YiiBase mempunyai property classMap. Properti ini dipakai oleh Yii untuk mekanisme autoloading.
YiiBase mempunyai method:
– app()
– autoload()
– beginProfile()
– createApplication()
– createComponent()
– createConsoleApplication()
– createWebApplication()
– endProfile()
– getFrameworkPath()
– getLogger()
– getPathOfAlias()
– getVersion()
– import()
– log()
– powered()
– registerAutoloader()
– setApplication()
– setPathOfAlias()
– t()
– trace() - Yii class
Lokasi file: framework/YiiBase.php
Yii merupakan turunan dari class YiiBase. Yii inilah yang mempunyai implementasi yang nyata dari method-method yang ada di YiiBase.
Kunjungi www.proweb.co.id untuk menambah wawasan anda.
Package system Yii