mirror of
https://github.com/yiisoft/yii.git
synced 2026-03-13 11:37:15 +01:00
18 lines
245 B
PHP
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;
|
|
}
|
|
}
|