����JFIF��H�H����Exif��MM�*���� ��3����V�����3������3�(��������������������3�����
Server IP : 74.208.127.88 / Your IP : 3.147.68.89 Web Server : Apache/2.4.41 (Ubuntu) System : Linux ubuntu 5.4.0-163-generic #180-Ubuntu SMP Tue Sep 5 13:21:23 UTC 2023 x86_64 User : www-data ( 33) PHP Version : 7.4.3-4ubuntu2.29 Disable Function : pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wifcontinued,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_get_handler,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,pcntl_async_signals,pcntl_unshare, MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : ON | Pkexec : ON Directory : /proc/self/root/var/www/html/app6/core/app/view/ |
Upload File : |
<section class="content" style="width:100%"> <?php $settings = ConfigurationData::getAll(); //$coins = CoinData::getAll(); ?> <!-- Main Content --> <div class="row"> <div class="col-md-12"> <h1>Ajustes Generales</h1> </div> </div> <br> <div class="row"> <div class="card-body"> <div class="panel panel-default"> <div class="panel-heading"> <i class="fa fa-wrench" ></i> Ajustes Generales </div> <form method="post" action="./?action=updatesettings" enctype="multipart/form-data"> <table class="table table-bordered"> <tbody> <?php $i=0; if(count($settings)>0):?> <?php foreach($settings as $cat):?> <tr> <td><?php echo $cat->name; ?> </td> <td> <?php if($cat->kind==2):?> <input type="text" name="<?php echo $cat->short; ?>" class="form-control" value="<?php echo $cat->val;?>"> <?php elseif($cat->kind==4 or $cat->kind==5 or $cat->kind==6):?> <?php if($cat->val!="" and $cat->kind==4):?> <img src="storage/configuration/<?php echo $cat->val;?>" style="width:180px;"><br><br> <?php endif;?> <?php if($cat->val!="" and $cat->kind==5):?> <input type="text" name="<?php echo $cat->short; ?>" class="form-control" value="storage/configuration/<?php echo $cat->val;?>" disabled> <?php endif;?> <?php if($cat->val!="" and $cat->kind==6):?> <input type="text" name="<?php echo $cat->short; ?>" class="form-control" value="storage/configuration/<?php echo $cat->val;?>" disabled> <?php endif;?> <input type="file" name="<?php echo $cat->short; ?>" > <?php endif;?> </td> <?php if($cat->id == 7): ?> <tr> <td > <div class="panel panel-default"> <div class="panel-heading"> <i class="fa fa-wrench"></i> Ajustes Fiscales </div> </td> </tr> </tr> <?php endif;?> <?php if($cat->id == 16): ?> <tr> <td > <div class="panel panel-default"> <div class="panel-heading"> <i class="fa fa-wrench"></i> Ajustes De Ventas Generales </div> </td> </tr> </tr> <?php endif;?> <?php if($cat->id == 27): ?> <tr> <td > <div class="panel panel-default"> <div class="panel-heading"> <i class="fa fa-wrench"></i> Datos de Sucursal </div> </td> </tr> </tr> <?php endif;?> <?php if($cat->id == 30): ?> <tr> <td > <div class="panel panel-default"> <div class="panel-heading"> <i class="fa fa-wrench"></i> Datos de Facturacion(Modulo Timbres) </div> </td> </tr> <?php endif;?> <?php if($cat->id == 36): ?> <tr> <td > <div class="panel panel-default"> <div class="panel-heading"> <i class="fa fa-wrench"></i> Datos de Facturacion(DEMO multifacturas) </div> </td> </tr> <?php endif;?> <?php if($cat->id == 36): ?> <tr> <td > <div class="panel panel-default"> <div class="panel-heading"> <i class="fa fa-wrench"></i> Saldo de Facturas(multifacturas) </div> </td> </tr> <?php endif;?> <?php endforeach; ?> <?php endif;?> <tr> <td> </td> <td> <input type="submit" class="btn btn-success" value="Actualizar Ajustes"> </td> </tr> </tbody> </table> </form> </div> </div> </div> </section>