mirror of
https://gitee.com/ShopeX/OMS
synced 2026-03-23 10:55:34 +08:00
50 lines
1.2 KiB
PHP
50 lines
1.2 KiB
PHP
<?php
|
||
/**
|
||
* Copyright © ShopeX (http://www.shopex.cn). All rights reserved.
|
||
* See LICENSE file for license details.
|
||
*/
|
||
|
||
|
||
class base_misc_doc{
|
||
|
||
function display($path){
|
||
|
||
list(,,$app,$file) = explode('/',$path);
|
||
$app = basename($app);
|
||
$file = realpath(app::get($app)->app_dir.'/docs/'.basename($file));
|
||
|
||
if(!$file){
|
||
//404
|
||
}
|
||
|
||
echo <<<EOF
|
||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
|
||
<HTML>
|
||
<HEAD>
|
||
<META HTTP-EQUIV="Content-Type" CONTENT="text/html; charset=utf-8">
|
||
<style>
|
||
html{background:#E1ECFE;font-family: Arial, sans-serif;font-size:0.8em}
|
||
body{width:680px;margin:auto;background:#fff;padding:20px}
|
||
h1{padding:20px 0;}
|
||
h1,h2,h3,h4,h5{text-shadow: 1px 1px 1px #aaa;}
|
||
pre{padding:10px;border:1px solid #ccc;background:#f0f0f0;}
|
||
pre,code{font-family: 'Andale Mono', 'Lucida Console', Monaco, fixed, monospace;font-size:11px}
|
||
code{color:#009}
|
||
</style>
|
||
EOF;
|
||
|
||
$t2t_parser = kernel::single('base_misc_t2t');
|
||
$t2t_parser->res_path = app::get($app)->res_url.'/../docs/';
|
||
$t2t_parser->load($file);
|
||
echo '<h1>'.$t2t_parser->title.'</h1>';
|
||
$t2t_parser->display();
|
||
|
||
echo <<<EOF
|
||
</body>
|
||
</html>
|
||
EOF;
|
||
|
||
}
|
||
|
||
}
|