1st release

This commit is contained in:
Paolo
2017-04-20 18:28:20 +02:00
parent e5d483caba
commit 11d3d7d7c0
7 changed files with 278 additions and 0 deletions
+24
View File
@@ -0,0 +1,24 @@
<?php $this->load->view("templates/header", array("title" => "UDF")); ?>
<body>
<div>
UDFWidget:
</div>
<div>
<?php
echo $this->widgetlib->UDFWidget(
array(
UDF_widget_tpl::SCHEMA_ARG_NAME => $schema,
UDF_widget_tpl::TABLE_ARG_NAME => $table,
UDF_widget_tpl::FIELD_ARG_NAME => $field
),
array('name' => 'schuhgroesse', 'id' => 'schuhgroesseUDF')
);
?>
</div>
</body>
<?php $this->load->view("templates/footer"); ?>