mirror of
https://gitee.com/ShopeX/OMS
synced 2026-03-23 02:45:33 +08:00
38 lines
770 B
PHP
38 lines
770 B
PHP
<?php
|
||
/**
|
||
* Copyright © ShopeX (http://www.shopex.cn). All rights reserved.
|
||
* See LICENSE file for license details.
|
||
*/
|
||
|
||
|
||
class desktop_widgets_appolymer implements desktop_interface_widget{
|
||
|
||
|
||
function __construct($app){
|
||
$this->app = $app;
|
||
$this->render = new base_render(app::get('desktop'));
|
||
}
|
||
|
||
function get_title(){
|
||
|
||
return app::get('desktop')->_("应用程序");
|
||
|
||
}
|
||
function get_html(){
|
||
$render = $this->render;
|
||
$render->pagedata['data'] = '';
|
||
return $render->fetch('widgets/appolymer.html');
|
||
}
|
||
function get_className(){
|
||
|
||
return "";
|
||
}
|
||
function get_width(){
|
||
|
||
return "normal";
|
||
|
||
}
|
||
|
||
}
|
||
|
||
?>
|