mirror of
				https://github.com/billz/raspap-webgui.git
				synced 2025-03-01 10:31:47 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			55 lines
		
	
	
		
			2.7 KiB
		
	
	
	
		
			PHP
		
	
	
		
			Executable File
		
	
	
	
	
			
		
		
	
	
			55 lines
		
	
	
		
			2.7 KiB
		
	
	
	
		
			PHP
		
	
	
		
			Executable File
		
	
	
	
	
|   <?php ob_start() ?>
 | |
|     <?php if (!RASPI_MONITOR_ENABLED) : ?>
 | |
|       <input type="submit" class="btn btn-outline btn-primary" name="saveadblocksettings" value="<?php echo _("Save settings"); ?>">
 | |
|       <?php if ($dnsmasq_state) : ?>
 | |
|         <input type="submit" class="btn btn-warning" name="restartadblock" value="<?php echo _("Restart Ad Blocking"); ?>">
 | |
|       <?php else : ?>
 | |
|         <input type="submit" class="btn btn-success" name="startadblock" value="<?php echo _("Start Ad Blocking"); ?>">
 | |
|       <?php endif ?>
 | |
|     <?php endif ?>
 | |
|   <?php $buttons = ob_get_clean(); ob_end_clean() ?>
 | |
| 
 | |
|   <div class="row">
 | |
|     <div class="col-lg-12">
 | |
|       <div class="card">
 | |
|         <div class="card-header">
 | |
|           <div class="row">
 | |
|             <div class="col">
 | |
|               <i class="far fa-hand-paper mr-2"></i><?php echo _("Ad Blocking"); ?>
 | |
|             </div>
 | |
|             <div class="col">
 | |
|               <button class="btn btn-light btn-icon-split btn-sm service-status float-right">
 | |
|                 <span class="icon text-gray-600"><i class="fas fa-circle service-status-<?php echo $serviceStatus ?>"></i></span>
 | |
|                 <span class="text service-status">adblock <?php echo _($serviceStatus) ?></span>
 | |
|               </button>
 | |
|             </div>
 | |
|           </div><!-- /.row -->
 | |
|         </div><!-- /.card-header -->
 | |
|         <div class="card-body">
 | |
|         <?php $status->showMessages(); ?>
 | |
|           <form role="form" action="?page=adblock_conf" enctype="multipart/form-data" method="POST">
 | |
|             <?php echo CSRFTokenFieldTag() ?>
 | |
|             <!-- Nav tabs -->
 | |
|             <ul class="nav nav-tabs">
 | |
|                 <li class="nav-item"><a class="nav-link active" id="blocklisttab" href="#adblocklistsettings" data-toggle="tab"><?php echo _("Blocklist settings"); ?></a></li>
 | |
|                 <li class="nav-item"><a class="nav-link" id="customtab" href="#adblockcustom" data-toggle="tab"><?php echo _("Custom blocklist"); ?></a></li>
 | |
|                 <li class="nav-item"><a class="nav-link" id="logoutputtab" href="#adblocklogfileoutput" data-toggle="tab"><?php echo _("Logging"); ?></a></li>
 | |
|             </ul>
 | |
| 
 | |
|             <!-- Tab panes -->
 | |
|             <div class="tab-content">
 | |
|               <?php echo renderTemplate("adblock/general", $__template_data) ?>
 | |
|               <?php echo renderTemplate("adblock/stats", $__template_data) ?>
 | |
|               <?php echo renderTemplate("adblock/custom", $__template_data) ?>
 | |
|               <?php echo renderTemplate("adblock/logging", $__template_data) ?>
 | |
|             </div><!-- /.tab-content -->
 | |
| 
 | |
|           <?php echo $buttons ?>
 | |
|           </form>
 | |
|         </div><!-- /.card-body -->
 | |
|         <div class="card-footer"><?php echo _("Information provided by adblock"); ?></div>
 | |
|       </div><!-- /.card -->
 | |
|     </div><!-- /.col-lg-12 -->
 | |
|   </div><!-- /.row -->
 | |
| 
 |