OpenXE/www/widgets/widget.adapterbox.php
2021-05-21 08:49:41 +02:00

40 lines
733 B
PHP

<?php
include ("_gen/widget.gen.adapterbox.php");
class WidgetAdapterbox extends WidgetGenAdapterbox
{
private $app;
function __construct($app,$parsetarget)
{
$this->app = $app;
$this->parsetarget = $parsetarget;
parent::__construct($app,$parsetarget);
$this->ExtendsForm();
}
function ExtendsForm()
{
//firma
}
public function Table()
{
$this->app->YUI->TableSearch('INHALT',"adapterboxlist");
$this->app->Tpl->Parse('PAGE',"rahmen70.tpl");
}
public function Search()
{
//$this->app->Tpl->Set($this->parsetarget,"suchmaske");
//$this->app->Table(
//$table = new OrderTable("veranstalter");
//$table->Heading(array('Name','Homepage','Telefon'));
}
}
?>