View file system/AJAX/php/banner_ads.php

File size: 676B
<?php  
require ($_SERVER['DOCUMENT_ROOT'].'/system/connections/core.php');
access('users');

$type = abs(intval(get('type')));

if (ajax() == true && $type >= 1 && $type <= 2){
  
  ?>
  <div class="modal_bottom_title2">
  <?=lg('Загрузить баннер')?>
  </div>
    
  <div class="modal-bottom-container">      
  <?=file::upload('/files/receiver/banner_ads.php?type='.$type)?>
  </div>
    
  <div class="modal_bottom_foot">
  <center>
  <button onclick='modal_bottom_close()' class='modal-bottom-button'><?=lg('Отменить')?></button>
  </center>
  </div>
  <?
  
}else{
  
  echo lg('Не удалось установить соединение');
  
}