View file modules/lottery/settings.php

File size: 915B
<?php
acms_header('Лотереи - админка', 'management');
is_active_module('PRIVATE_LOTTERY');

if (post('ok_lot')){
  
  valid::create(array(

    'LOT_MONEY' => ['money', 'number', [1, 99999999], 'Стоимость']
  
  ));
  
  if (ERROR_LOG == 1){
    
    redirect('/m/lottery/settings/');
  
  }
  
  ini::upgrade(ROOT.'/system/config/global/settings.ini', 'LOTTERY_MONEY', LOT_MONEY);
  
  success('Изменения успешно приняты');
  redirect('/m/lottery/settings/');
  
}

?>    
<div class='list'>
<form method='post' class='ajax-form' action='/m/lottery/settings/'>
<?=html::input('money', '0', 'Стоимость 1 билета', null, intval(config('LOTTERY_MONEY')), 'form-control-50', 'number', null, 'database')?>
<?=html::button('button ajax-button', 'ok_lot', 'save', 'Сохранить изменения')?>
</form>
</div>
<?

back('/m/lottery/');
acms_footer();