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.
13 lines
468 B
13 lines
468 B
2 years ago
|
<?php
|
||
|
class delFileInputView extends SmartyView {
|
||
|
// setTemplate() 为该视图设置模板。
|
||
|
public function execute() {
|
||
|
$request = $this->getContext()->getRequest();
|
||
|
// $this->setAttribute('version',$request->getAttribute('version'));
|
||
|
// $this->setAttribute('list',$request->getAttribute('list'));
|
||
|
// $this->setAttribute('admin_id',$request->getAttribute('admin_id'));
|
||
|
|
||
|
$this->setTemplate("index.tpl");
|
||
|
}
|
||
|
}
|
||
|
?>
|