├── LICENSE
├── README.md
├── WebAN.zip
├── dht.dat
├── doc
├── README.md
└── 离线下载.md
├── dplayer.php
├── ffmpeg.php
├── gbk.zip
├── index.php
├── jugg.php
├── more.php
├── moreinfo.php
├── wadir-ajax.php
├── wadir-dplay.php
└── wadir.php
/LICENSE:
--------------------------------------------------------------------------------
1 | Apache License
2 | Version 2.0, January 2004
3 | http://www.apache.org/licenses/
4 |
5 | TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
6 |
7 | 1. Definitions.
8 |
9 | "License" shall mean the terms and conditions for use, reproduction, and
10 | distribution as defined by Sections 1 through 9 of this document.
11 |
12 | "Licensor" shall mean the copyright owner or entity authorized by the copyright
13 | owner that is granting the License.
14 |
15 | "Legal Entity" shall mean the union of the acting entity and all other entities
16 | that control, are controlled by, or are under common control with that entity.
17 | For the purposes of this definition, "control" means (i) the power, direct or
18 | indirect, to cause the direction or management of such entity, whether by
19 | contract or otherwise, or (ii) ownership of fifty percent (50%) or more of the
20 | outstanding shares, or (iii) beneficial ownership of such entity.
21 |
22 | "You" (or "Your") shall mean an individual or Legal Entity exercising
23 | permissions granted by this License.
24 |
25 | "Source" form shall mean the preferred form for making modifications, including
26 | but not limited to software source code, documentation source, and configuration
27 | files.
28 |
29 | "Object" form shall mean any form resulting from mechanical transformation or
30 | translation of a Source form, including but not limited to compiled object code,
31 | generated documentation, and conversions to other media types.
32 |
33 | "Work" shall mean the work of authorship, whether in Source or Object form, made
34 | available under the License, as indicated by a copyright notice that is included
35 | in or attached to the work (an example is provided in the Appendix below).
36 |
37 | "Derivative Works" shall mean any work, whether in Source or Object form, that
38 | is based on (or derived from) the Work and for which the editorial revisions,
39 | annotations, elaborations, or other modifications represent, as a whole, an
40 | original work of authorship. For the purposes of this License, Derivative Works
41 | shall not include works that remain separable from, or merely link (or bind by
42 | name) to the interfaces of, the Work and Derivative Works thereof.
43 |
44 | "Contribution" shall mean any work of authorship, including the original version
45 | of the Work and any modifications or additions to that Work or Derivative Works
46 | thereof, that is intentionally submitted to Licensor for inclusion in the Work
47 | by the copyright owner or by an individual or Legal Entity authorized to submit
48 | on behalf of the copyright owner. For the purposes of this definition,
49 | "submitted" means any form of electronic, verbal, or written communication sent
50 | to the Licensor or its representatives, including but not limited to
51 | communication on electronic mailing lists, source code control systems, and
52 | issue tracking systems that are managed by, or on behalf of, the Licensor for
53 | the purpose of discussing and improving the Work, but excluding communication
54 | that is conspicuously marked or otherwise designated in writing by the copyright
55 | owner as "Not a Contribution."
56 |
57 | "Contributor" shall mean Licensor and any individual or Legal Entity on behalf
58 | of whom a Contribution has been received by Licensor and subsequently
59 | incorporated within the Work.
60 |
61 | 2. Grant of Copyright License.
62 |
63 | Subject to the terms and conditions of this License, each Contributor hereby
64 | grants to You a perpetual, worldwide, non-exclusive, no-charge, royalty-free,
65 | irrevocable copyright license to reproduce, prepare Derivative Works of,
66 | publicly display, publicly perform, sublicense, and distribute the Work and such
67 | Derivative Works in Source or Object form.
68 |
69 | 3. Grant of Patent License.
70 |
71 | Subject to the terms and conditions of this License, each Contributor hereby
72 | grants to You a perpetual, worldwide, non-exclusive, no-charge, royalty-free,
73 | irrevocable (except as stated in this section) patent license to make, have
74 | made, use, offer to sell, sell, import, and otherwise transfer the Work, where
75 | such license applies only to those patent claims licensable by such Contributor
76 | that are necessarily infringed by their Contribution(s) alone or by combination
77 | of their Contribution(s) with the Work to which such Contribution(s) was
78 | submitted. If You institute patent litigation against any entity (including a
79 | cross-claim or counterclaim in a lawsuit) alleging that the Work or a
80 | Contribution incorporated within the Work constitutes direct or contributory
81 | patent infringement, then any patent licenses granted to You under this License
82 | for that Work shall terminate as of the date such litigation is filed.
83 |
84 | 4. Redistribution.
85 |
86 | You may reproduce and distribute copies of the Work or Derivative Works thereof
87 | in any medium, with or without modifications, and in Source or Object form,
88 | provided that You meet the following conditions:
89 |
90 | You must give any other recipients of the Work or Derivative Works a copy of
91 | this License; and
92 | You must cause any modified files to carry prominent notices stating that You
93 | changed the files; and
94 | You must retain, in the Source form of any Derivative Works that You distribute,
95 | all copyright, patent, trademark, and attribution notices from the Source form
96 | of the Work, excluding those notices that do not pertain to any part of the
97 | Derivative Works; and
98 | If the Work includes a "NOTICE" text file as part of its distribution, then any
99 | Derivative Works that You distribute must include a readable copy of the
100 | attribution notices contained within such NOTICE file, excluding those notices
101 | that do not pertain to any part of the Derivative Works, in at least one of the
102 | following places: within a NOTICE text file distributed as part of the
103 | Derivative Works; within the Source form or documentation, if provided along
104 | with the Derivative Works; or, within a display generated by the Derivative
105 | Works, if and wherever such third-party notices normally appear. The contents of
106 | the NOTICE file are for informational purposes only and do not modify the
107 | License. You may add Your own attribution notices within Derivative Works that
108 | You distribute, alongside or as an addendum to the NOTICE text from the Work,
109 | provided that such additional attribution notices cannot be construed as
110 | modifying the License.
111 | You may add Your own copyright statement to Your modifications and may provide
112 | additional or different license terms and conditions for use, reproduction, or
113 | distribution of Your modifications, or for any such Derivative Works as a whole,
114 | provided Your use, reproduction, and distribution of the Work otherwise complies
115 | with the conditions stated in this License.
116 |
117 | 5. Submission of Contributions.
118 |
119 | Unless You explicitly state otherwise, any Contribution intentionally submitted
120 | for inclusion in the Work by You to the Licensor shall be under the terms and
121 | conditions of this License, without any additional terms or conditions.
122 | Notwithstanding the above, nothing herein shall supersede or modify the terms of
123 | any separate license agreement you may have executed with Licensor regarding
124 | such Contributions.
125 |
126 | 6. Trademarks.
127 |
128 | This License does not grant permission to use the trade names, trademarks,
129 | service marks, or product names of the Licensor, except as required for
130 | reasonable and customary use in describing the origin of the Work and
131 | reproducing the content of the NOTICE file.
132 |
133 | 7. Disclaimer of Warranty.
134 |
135 | Unless required by applicable law or agreed to in writing, Licensor provides the
136 | Work (and each Contributor provides its Contributions) on an "AS IS" BASIS,
137 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied,
138 | including, without limitation, any warranties or conditions of TITLE,
139 | NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A PARTICULAR PURPOSE. You are
140 | solely responsible for determining the appropriateness of using or
141 | redistributing the Work and assume any risks associated with Your exercise of
142 | permissions under this License.
143 |
144 | 8. Limitation of Liability.
145 |
146 | In no event and under no legal theory, whether in tort (including negligence),
147 | contract, or otherwise, unless required by applicable law (such as deliberate
148 | and grossly negligent acts) or agreed to in writing, shall any Contributor be
149 | liable to You for damages, including any direct, indirect, special, incidental,
150 | or consequential damages of any character arising as a result of this License or
151 | out of the use or inability to use the Work (including but not limited to
152 | damages for loss of goodwill, work stoppage, computer failure or malfunction, or
153 | any and all other commercial damages or losses), even if such Contributor has
154 | been advised of the possibility of such damages.
155 |
156 | 9. Accepting Warranty or Additional Liability.
157 |
158 | While redistributing the Work or Derivative Works thereof, You may choose to
159 | offer, and charge a fee for, acceptance of support, warranty, indemnity, or
160 | other liability obligations and/or rights consistent with this License. However,
161 | in accepting such obligations, You may act only on Your own behalf and on Your
162 | sole responsibility, not on behalf of any other Contributor, and only if You
163 | agree to indemnify, defend, and hold each Contributor harmless for any liability
164 | incurred by, or claims asserted against, such Contributor by reason of your
165 | accepting any such warranty or additional liability.
166 |
167 | END OF TERMS AND CONDITIONS
168 |
169 | APPENDIX: How to apply the Apache License to your work
170 |
171 | To apply the Apache License to your work, attach the following boilerplate
172 | notice, with the fields enclosed by brackets "{}" replaced with your own
173 | identifying information. (Don't include the brackets!) The text should be
174 | enclosed in the appropriate comment syntax for the file format. We also
175 | recommend that a file or class name and description of purpose be included on
176 | the same "printed page" as the copyright notice for easier identification within
177 | third-party archives.
178 |
179 | Copyright 2016 Egist
180 |
181 | Licensed under the Apache License, Version 2.0 (the "License");
182 | you may not use this file except in compliance with the License.
183 | You may obtain a copy of the License at
184 |
185 | http://www.apache.org/licenses/LICENSE-2.0
186 |
187 | Unless required by applicable law or agreed to in writing, software
188 | distributed under the License is distributed on an "AS IS" BASIS,
189 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
190 | See the License for the specific language governing permissions and
191 | limitations under the License.
--------------------------------------------------------------------------------
/README.md:
--------------------------------------------------------------------------------
1 | # webdir
2 | ## index.php
3 | index.php放在你的网站根目录并且设置好你的所在目录权限即可[用于目录浏览]
4 |
5 | 1.图标图片预览支持IE浏览器
6 |
7 | 2.手机端自动缩放
8 |
9 | 开启密码请将前面的"//"删去,默认密码为123
10 | ```
11 | //define("PASS","123");//
12 | ```
13 | 只展示该目录以下的所有文件,通过添加禁止显示文件夹以及后缀文件来控制显示
14 |
15 | 例如:
16 | ```
17 | $this->notex=array("php","js","tgz");//不允许显示的后缀名文件
18 | $this->notdir=array("a","phpmyadmin");//不允许显示的文件夹
19 | ```
20 |
21 | 支持在线播放mp4视频和MP3音频以及PDF在线预览,对于手机的自适应不是特别完美。
22 |
23 | eg:http://webdir.cc/
24 |
25 | LNMP LAMP 一键包测试通过, **windows下惨不忍睹**
26 |
27 | ## WabAN
28 |
29 | Webdir下外挂一个[AriaNg](https://github.com/mayswind/AriaNg)来控制下载(注意:Aria2请务必安装不然会显示“未连接”)。
30 |
31 |
32 | 
33 |
34 | 
35 |
36 | ### 安装WebAN
37 | 安装[Aria2](https://github.com/maysrp/webdir/blob/master/doc/%E7%A6%BB%E7%BA%BF%E4%B8%8B%E8%BD%BD.md#aria2-安装)
38 |
39 | 下载[WebAN.zip](https://github.com/maysrp/webdir/raw/master/WebAN.zip)并解压到你的想放的web目录,在index.php文件顶部可以编辑密码,默认密码为admin,访问你的对应的网站即可。
40 |
41 | ## wadir-ajax.php
42 |
43 | 与下面的wadir.php安装步骤以及功能完全相同,但是aria2下载操作全部换成AJAX进行,界面稍微好于wadir.php.定时刷新30S一次,可以手动刷新。
44 |
45 | 
46 |
47 | ## wadir.php
48 |
49 | 详细安装方法:https://github.com/maysrp/webdir/tree/master/doc
50 |
51 | **对于index.php的扩充**
52 |
53 | 基于php-aria2,需要安装aria2的支持。
54 | 简单的管理:
55 |
56 |
57 | 关于导入Magnet成功却从未有速度,且不显示文件名的,可能存在的问题,缺少dht.dat,参考下文中的dht.dat的处理方法
58 | ###配置
59 | 密码:
60 | ```
61 | define("PASS", "admin");
62 | ```
63 | 配置显示文件以及文件夹
64 | ```
65 | $this->notex=array("php","js","tgz");//不允许显示的后缀名文件
66 | $this->notdir=array("a","phpmyadmin");//不允许显示的文件夹
67 | ```
68 | ##more.php
69 | ###简单的多用户实现
70 | 创建不同的目录每个目录都放入more.php,配置如下(目录必须可写 0777):
71 | ```
72 | define("PASS", "admin");
73 | define("TYPE","d");//定义结算方式,d为每日,m为每月
74 | define("NUM", 1);//每个结束方式内可以下载的数量
75 | ```
76 |
77 | 每个账户一个目录,登入后能添加magnet,对其进行基本管理。
78 |
79 | ## moreinfo.php
80 |
81 |
82 |
83 | 多用户控制,可以控制每个用户离线空间的总大小,周期结算类型,每个周期内可用的任务个数,每次任务的大小等......
84 |
85 | 创建不同的目录每个目录都放入moreinfo.php,配置如下(目录必须可写 0777):
86 | ```
87 | define("PASS", "admin");
88 | define("TYPE","d");//定义结算方式,d为每日,m为每月
89 | define("NUM", 1);//每个结束方式内可以下载的数量
90 | define("DISK", 20);//单位GB,定义总空间大小
91 | define("MAX", 10);//单位GB,定义每个任务的大小[超出自动删除任务]
92 | ```
93 | 每个账户一个目录,登入后能添加magnet,对其进行基本管理。
94 | ##dplayer.php
95 | 使用dplayer播放器的index.php;
96 | ##wadir-dplay.php
97 | 使用dplayer播放器的wadir.php;
98 | ##wardir/
99 |
100 | 移动到:https://github.com/maysrp/wardir
101 |
102 | ## jugg.php
103 | 该文件只用于检测你是否完成了aria2的配置,上传到你的网站根目录访问即可,如有正常的文件下载信息表示完成了aria2配置,删除该文件即可。
104 | ##dht.dat
105 | 有些新安装aria2,可能会因为缺少dht.dat导致无法magnet下载,拷贝该文件到你的/root/.aria2/下即可
106 |
107 | ## ffmpge.php
108 |
109 | 基本界面和之前类似:
110 | 
111 | 黄色的就是转换符号,未用到任何数据库,没有转换完成通知,调用时间根据你的设置的PHP脚本运行时间为止。
112 | 在线转码,请
113 | php.ini中修改:
114 |
115 | 删去禁用的exec
116 |
117 | 以及修改脚本运行时间1000s:
118 |
119 | max_execution_time = 1000;
120 |
121 | 修改配置后记得重新启动php端:
122 |
123 | 服务端安装ffmpeg
124 | ubuntu/debian 安装ffmpeg
125 | ```
126 | sudo apt-get install ffmpeg
127 | ```
128 | VPS转码效率底下
129 | [vultr](http://git.oschina.net/uploads/images/2016/1219/035456_77bbf7bf_700748.png "转换速度")
130 | 默认是webm格式的视频修改
131 |
132 | ```
133 | return "|";
134 | ```
135 |
136 | 改变为:
137 |
138 |
139 | ```
140 | return "|";
141 | ```
142 |
143 | ## gbk.zip
144 | 如果中文乱码请解压使用该脚本
145 |
146 |
147 |
--------------------------------------------------------------------------------
/WebAN.zip:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/maysrp/webdir/bc7da2fb350bce26463ec0555482657b1413bd0d/WebAN.zip
--------------------------------------------------------------------------------
/dht.dat:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/maysrp/webdir/bc7da2fb350bce26463ec0555482657b1413bd0d/dht.dat
--------------------------------------------------------------------------------
/doc/README.md:
--------------------------------------------------------------------------------
1 | ## wadir.php
2 |
3 | ### USAGE
4 |
5 | #### Aria2
6 |
7 | Debian
8 |
9 |
10 | install Aria2
11 |
12 |
13 | ```
14 | apt-get install -y aria2
15 | ```
16 |
17 | install screen
18 |
19 | ```
20 | apt-get install -y screen
21 | ```
22 |
23 | Aria2 config
24 |
25 | ```
26 | mkdir /root/.aria2
27 |
28 | cd /root/.aria2
29 |
30 | wget http://webdir.cc/aria2.conf /root/.aria2/aria2.conf
31 |
32 |
33 | wget http://webdir.cc/dht.dat /root/.aria2/dht.dat
34 |
35 |
36 | echo '' > /root/aria2.session
37 |
38 | ```
39 |
40 | start up Aria2
41 |
42 | ```
43 | screen -dmS aria2 aria2c --enable-rpc --rpc-listen-all=true --rpc-allow-origin-all -c
44 | ```
45 |
46 | #### wadir.php
47 |
48 | upload *wadir.php* on your WWW directory
49 |
50 | set password
51 | ```
52 | define("PASS","Password");
53 | ```
54 | set forbidden access directory [notdir] and extension [notex]
55 | ```
56 | $this->notdir=array("a","phpmyadmin");
57 | $this->notex=array("php","js","tgz");
58 | ```
59 |
60 | visit http://yourdomain/wadir.php by your browser
61 |
62 |
63 |
64 |
65 |
--------------------------------------------------------------------------------
/doc/离线下载.md:
--------------------------------------------------------------------------------
1 | ## 离线下载 wadir.php
2 | ### Aria2 安装:
3 |
4 | Debian 8系统 apt-get 安装Aria2
5 |
6 | ```
7 | apt-get update && apt-get install -y aria2
8 | ```
9 |
10 | 创建目录:
11 |
12 | ```
13 | mkdir /root/.aria2
14 |
15 | cd /root/.aria2
16 | ```
17 |
18 | 修改配置文件: 下载配置文件:http://webdir.cc/aria2.conf
19 |
20 | 修改配置信息请参考:aria2.conf
21 |
22 | 保存到刚刚的目录上
23 |
24 | ```
25 | wget http://webdir.cc/aria2.conf /root/.aria2/aria2.conf
26 | ```
27 |
28 | 下载http://webdir.cc/dht.dat dht.dat 到/root/.aria2/
29 | ```
30 | wget http://webdir.cc/dht.dat /root/.aria2/dht.dat
31 | ```
32 | 执行命令:
33 | ```
34 | echo '' > /root/aria2.session
35 | ```
36 | 执行命令,让aria2启动:
37 | 若没安装screen 请先
38 | ```
39 | apt-get install -y screen
40 | ```
41 |
42 | 在安装好screen后执行
43 | ```
44 | screen -dmS aria2 aria2c --enable-rpc --rpc-listen-all=true --rpc-allow-origin-all -c
45 | ```
46 | ### wadir.php安装
47 | 将wadir.php上传到你的网站根目录
48 |
49 | 设置密码
50 | ```
51 | define("PASS","123");//
52 | ```
53 | 只展示该目录以下的所有文件,通过添加禁止显示文件夹以及后缀文件来控制显示
54 |
55 | 例如:
56 | ```
57 | $this->notex=array("php","js","tgz");//不允许显示的后缀名文件
58 | $this->notdir=array("a","phpmyadmin");//不允许显示的文件夹
59 | ```
60 | 访问
61 | http://你的域名/wadir.php 即可
62 |
--------------------------------------------------------------------------------
/dplayer.php:
--------------------------------------------------------------------------------
1 | notex=array("php","js","tgz");//不允许显示的后缀名文件
14 | $this->notdir=array("a","phpmyadmin");//不允许显示的文件夹
15 | if (isset($_GET['dir'])) {
16 | foreach ($this->notdir as $key => $value) {
17 | if(strtolower($_GET['dir'])==$value){
18 | $_GET['dir']=".";
19 | }
20 | }
21 | $tom=trim($_GET['dir']);
22 | $tam=str_replace("..", ".", $tom);
23 | $this->dir="./".$tam;
24 | }else{
25 | $this->dir=".";
26 | }
27 | }
28 | function ex($string){
29 | $ar=explode(".", $string);
30 | $ex=array_pop($ar);
31 | return strtolower($ex);
32 | }
33 | function open_dir(){
34 | if(is_dir($this->dir)){
35 | if($dh=opendir($this->dir)){
36 | while(($file=readdir($dh))!==false){
37 | $this->jugg($file);
38 | }
39 | //sort($this->file);
40 | //sort($this->dirdir);
41 | closedir($dh);
42 | }
43 | }else{
44 | echo "error";
45 | }
46 | }
47 | function jugg($jugg){
48 | if($jugg!="."&&$jugg!=".."){
49 | if (is_dir($this->dir."/".$jugg)) {
50 | if(!in_array(strtolower($this->filename($jugg)), $this->notdir)){
51 | $this->dirdir[]=$this->dir."/".$jugg;
52 | }
53 | }else{
54 | $ex=$this->ex($jugg);
55 | if(!in_array($ex, $this->notex)){
56 | $this->file[]=$this->dir."/".$jugg;
57 | }
58 | }
59 | }
60 | }
61 | function dirurl($dir){
62 | $urf=substr($dir,2 );
63 | return "?dir=".rawurlencode($urf);
64 | }
65 | function value($value){
66 | $urf=substr($value,2 );
67 | return $urf;
68 | }
69 | function type($file){
70 | $ex=$this->ex($file);
71 | switch ($ex) {
72 | case 'png':
73 | case 'jpg':
74 | case 'gif':
75 | case 'bmp':
76 | case 'jpeg':
77 | return "img";
78 | break;
79 | case 'torrent':
80 | return "torrent";
81 | break;
82 | case 'mp3':
83 | return "mp3";
84 | break;
85 | case 'mp4':
86 | case 'ogg':
87 | case 'webm':
88 | return "video";
89 | break;
90 | case 'xls':
91 | case 'xlsx':
92 | case 'doc':
93 | case 'docx':
94 | case 'ppt':
95 | case 'pptx':
96 | return "other";
97 | break;
98 | case 'pdf':
99 | return "pdf";
100 | break;
101 | case 'txt':
102 | case 'json':
103 | case 'xml':
104 | case 'html':
105 | case 'md':
106 | return "text";
107 | break;
108 | default:
109 | return "other";
110 | break;
111 | }
112 | }
113 | function download($file){
114 | return "";
115 | }
116 | function md5($file){
117 | return md5_file($file);
118 | }
119 | function other($file){
120 |
121 |
122 | }
123 | function img($img){
124 |
125 | }
126 | function pdf($pdf){
127 |
128 | }
129 | function video($video){
130 |
131 | }
132 | function mp3($mp3){
133 |
134 | }
135 | function torrent($torrent){
136 |
137 | }
138 | function filename($file){
139 | $ar=explode("/", $file);
140 | return array_pop($ar);
141 | }
142 | function text($file){
143 |
144 | }
145 | function size($file){
146 | $fz=filesize($file);
147 | if ($fz>(1024*1024*1024)) {
148 | return sprintf("%.2f",$fz/(1024*1024*1024))."GB";
149 | }elseif ($fz>(1024*1024)) {
150 | return sprintf("%.2f",$fz/(1024*1024))."MB";
151 | }elseif($fz>1024){
152 | return sprintf("%.2f",$fz/1024)."KB";
153 | }else{
154 | return $fz."B";
155 | }
156 | }
157 | function mtime($file){
158 | return date("Y-m-d H:i:s",filemtime($file));
159 | }
160 | function atime($file){
161 | return date("Y-m-d H:i:s",fileatime($file));
162 | }
163 | function ctime($file){
164 | return date("Y-m-d H:i:s",filectime($file));
165 |
166 | }
167 | function icon($file){
168 | $ex=$this->ex($file);
169 | switch ($ex) {
170 | case 'png':
171 | case 'jpg':
172 | case 'gif':
173 | case 'bmp':
174 | case 'jpeg':
175 | return "glyphicon glyphicon-picture";
176 | break;
177 | case 'torrent':
178 | return "glyphicon glyphicon-magnet";
179 | break;
180 | case 'mp3':
181 | return "glyphicon glyphicon-music";
182 | break;
183 | case 'mp4':
184 | case 'ogg':
185 | case 'webm':
186 | return "glyphicon glyphicon-film";
187 | break;
188 | case 'xls':
189 | case 'xlsx':
190 | case 'doc':
191 | case 'docx':
192 | case 'ppt':
193 | case 'pptx':
194 | return "glyphicon glyphicon-pencil";
195 | break;
196 | case 'pdf':
197 | return "glyphicon glyphicon-book";
198 | break;
199 | case 'txt':
200 | case 'md':
201 | return "glyphicon glyphicon-file";
202 | break;
203 | default:
204 | return "glyphicon glyphicon-stop";
205 | break;
206 | }
207 | }
208 | function pre(){
209 | $dir_array=explode("/", $this->dir);
210 | $num=count($dir_array);
211 | if($num>=2){
212 | @array_shift($dir_array);
213 | $url="/.";
214 | $step="";
215 | foreach ($dir_array as $key => $value) {
216 | $step=$step.$value."/";
217 | $url=$url."/".$value."";
218 | }
219 | return $url;
220 | }
221 |
222 | }
223 | }
224 | ?>
225 |
226 |
227 |