20 lines
		
	
	
		
			935 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			20 lines
		
	
	
		
			935 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
| <?php
 | |
| defined('BASEPATH') OR exit('No direct script access allowed');
 | |
| ?>
 | |
| 
 | |
| <iframe src="<?= $origin ?>" frameborder="0" scrolling="no" style="position: absolute; width: 100%; height: 100%; top: 0; overflow: hidden; pointer-events: none; z-index: 1000;"></iframe>
 | |
| 
 | |
| <div class="modal fade postFullviewModal" tabindex="-1" role="dialog" id="userPostModal" data-username="<?= $username ?>" data-uuid="<?= $uuid ?>" data-origin="<?= $origin ?>">
 | |
|     <div class="modal-dialog modal-lg" role="document">
 | |
|         <div class="modal-content">
 | |
|             <div class="modal-header">
 | |
|                 <button type="button" class="close" data-dismiss="modal" aria-label="Schließen">
 | |
|                     <span aria-hidden="true">×</span>
 | |
|                 </button>
 | |
|             </div>
 | |
|             <div class="modal-body text-center">
 | |
|                 <i class="fas fa-3x fa-spinner fa-spin"></i>
 | |
|             </div>
 | |
|         </div>
 | |
|     </div>
 | |
| </div>
 |