Files
yii/framework/web/form/CFormElement.php
2009-06-25 21:42:01 +00:00

18 lines
245 B
PHP

<?php
abstract class CFormElement extends CBaseFormElement
{
private $_form;
public function __construct($form,$config=null)
{
$this->_form=$form;
$this->configure($config);
}
public function getForm()
{
return $this->_form;
}
}