本文整理匯總了PHP中sfWidgetFormSchema::__construct方法的典型用法代碼示例。如果您正苦於以下問題:PHP sfWidgetFormSchema::__construct方法的具體用法?PHP sfWidgetFormSchema::__construct怎麽用?PHP sfWidgetFormSchema::__construct使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類sfWidgetFormSchema
的用法示例。
在下文中一共展示了sfWidgetFormSchema::__construct方法的2個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。
示例1: __construct
/**
* Constructor.
*
* @param sfWidgetFormSchema $widget A sfWidgetFormSchema instance
* @param string $decorator A decorator string
*
* @see sfWidgetFormSchema
*/
public function __construct(sfWidgetFormSchema $widget, $decorator)
{
$this->widget = $widget;
$this->decorator = $decorator;
parent::__construct();
}
示例2: __construct
/**
* Constructor.
*
* @param sfWidgetFormSchema $widget An sfWidgetFormSchema instance
* @param integer $count The number of times to duplicate the widget
* @param array $options An array of options
* @param array $attributes An array of default HTML attributes
* @param array $labels An array of HTML labels
*
* @see sfWidgetFormSchema
*/
public function __construct(sfWidgetFormSchema $widget, $count, $options = array(), $attributes = array(), $labels = array())
{
parent::__construct(array_fill(0, $count, $widget), $options, $attributes, $labels);
}