Files
OMS/app/desktop/lib/finder/builder/import.php
2025-12-28 23:13:25 +08:00

28 lines
601 B
PHP
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
<?php
/**
* Copyright © ShopeX http://www.shopex.cn. All rights reserved.
* See LICENSE file for license details.
*/
class desktop_finder_builder_import extends desktop_finder_builder_prototype
{
/**
* main
* @return mixed 返回值
*/
public function main()
{
$render = app::get('desktop')->render();
if (!$render->pagedata['thisUrl']) {
$render->pagedata['thisUrl'] = $this->url;
}
$render->pagedata['use_import_template'] = $this->use_import_template;
echo $render->fetch('common/import.html');
}
}