www.gusucode.com > Elgg PHP开源SNS系统 V1.12.5源码程序 > elgg-1.12.5/views/default/object/widget/elements/settings.php

    <?php
/**
 * Elgg widget edit settings
 *
 * @uses $vars['widget']
 */

$widget = elgg_extract('widget', $vars);

// not using elgg_view_form() so that we can detect if the form is empty
$form_body = elgg_view('forms/widgets/save', $vars);
if (!$form_body) {
	return true;
}

$additional_class = preg_replace('/[^a-z0-9-]/i', '-', "elgg-form-widgets-save-{$widget->handler}");

$form = elgg_view('input/form', array(
	'action' => 'action/widgets/save',
	'body' => $form_body,
	'class' => "elgg-form-widgets-save $additional_class",
));
?>

<div class="elgg-widget-edit" id="widget-edit-<?php echo $widget->guid; ?>">
	<?php echo $form; ?>
</div>