You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
437 B
17 lines
437 B
<?php
|
|
|
|
|
|
|
|
|
|
|
|
class step1InputView extends SmartyView
|
|
|
|
|
|
{
|
|
|
|
|
|
|
|
|
|
|
|
public function execute ()
|
|
{
$request = $this->getContext()->getRequest();
$this->setAttribute("func",$request->getAttribute("func"));
$this->setAttribute("files",$request->getAttribute("files"));
$this->setAttribute("functions",$request->getAttribute("functions"));
$this->setTemplate('step1.tpl');
}
}
?>
|