36 lines
		
	
	
		
			515 B
		
	
	
	
		
			PHP
		
	
	
		
			Executable File
		
	
	
	
	
			
		
		
	
	
			36 lines
		
	
	
		
			515 B
		
	
	
	
		
			PHP
		
	
	
		
			Executable File
		
	
	
	
	
| <?php
 | |
| 
 | |
| namespace Zotlabs\Daemon;
 | |
| 
 | |
| 
 | |
| class Importdoc {
 | |
| 
 | |
| 	static public function run($argc,$argv) {
 | |
| 
 | |
| 		require_once('include/help.php');
 | |
| 
 | |
| 		self::update_docs_dir('doc/*');
 | |
| 
 | |
| 	}
 | |
| 
 | |
| 	static public function update_docs_dir($s) {
 | |
| 		$f = basename($s);
 | |
| 		$d = dirname($s);
 | |
| 		if($s === 'doc/html')
 | |
| 			return;
 | |
| 		$files = glob("$d/$f");
 | |
| 		if($files) {
 | |
| 			foreach($files as $fi) {
 | |
| 				if($fi === 'doc/html')
 | |
| 					continue;
 | |
| 				if(is_dir($fi))
 | |
| 					self::update_docs_dir("$fi/*");
 | |
| 				else
 | |
| 					store_doc_file($fi);
 | |
| 			}
 | |
| 		}
 | |
| 	}
 | |
| }
 | |
| 
 | |
| 
 |