mirror of
				https://github.com/librenms/librenms.git
				synced 2024-10-07 16:52:45 +00:00 
			
		
		
		
	Travis tests for code conformance. Ignore warnings for now. Fixed all errors, left most warnings.
		
			
				
	
	
		
			67 lines
		
	
	
		
			2.9 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			67 lines
		
	
	
		
			2.9 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
<?php
 | 
						|
/* Copyright (C) 2015 Daniel Preussker, QuxLabs UG <preussker@quxlabs.com>
 | 
						|
 * This program is free software: you can redistribute it and/or modify
 | 
						|
 * it under the terms of the GNU General Public License as published by
 | 
						|
 * the Free Software Foundation, either version 3 of the License, or
 | 
						|
 * (at your option) any later version.
 | 
						|
 * 
 | 
						|
 * This program is distributed in the hope that it will be useful,
 | 
						|
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 | 
						|
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.See the
 | 
						|
 * GNU General Public License for more details.
 | 
						|
 * 
 | 
						|
 * You should have received a copy of the GNU General Public License
 | 
						|
 * along with this program.  If not, see <http://www.gnu.org/licenses/>. */
 | 
						|
 | 
						|
/**
 | 
						|
 * Generic Image Widget
 | 
						|
 * @author Daniel Preussker
 | 
						|
 * @copyright 2015 Daniel Preussker, QuxLabs UG
 | 
						|
 * @license GPL
 | 
						|
 * @package LibreNMS
 | 
						|
 * @subpackage Widgets
 | 
						|
 */
 | 
						|
 | 
						|
if (defined('SHOW_SETTINGS') || empty($widget_settings)) {
 | 
						|
    $common_output[] = '
 | 
						|
<form class="form" onsubmit="widget_settings(this); return false;">
 | 
						|
  <div class="form-group input_'.$unique_id.'" id="input_'.$unique_id.'">
 | 
						|
    <div class="col-sm-2">
 | 
						|
      <label for="image_url" class="control-label">Title: </label>
 | 
						|
    </div>
 | 
						|
    <div class="col-sm-10">
 | 
						|
      <input type="text" class="form-control input_'.$unique_id.'" name="image_title" placeholder="Title" value="'.htmlspecialchars($widget_settings['image_title']).'">
 | 
						|
    </div>
 | 
						|
  </div>
 | 
						|
  <div class="form-group input_'.$unique_id.'" id="input_'.$unique_id.'">
 | 
						|
    <div class="col-sm-2">
 | 
						|
      <label for="image_url" class="control-label">Image URL: </label>
 | 
						|
    </div>
 | 
						|
    <div class="col-sm-10">
 | 
						|
      <input type="text" class="form-control input_'.$unique_id.'" name="image_url" placeholder="Image URL" value="'.htmlspecialchars($widget_settings['image_url']).'">
 | 
						|
    </div>
 | 
						|
  </div>
 | 
						|
  <div class="form-group input_'.$unique_id.'" id="input_'.$unique_id.'">
 | 
						|
    <div class="col-sm-2">
 | 
						|
      <label for="image_url" class="control-label">Target URL: </label>
 | 
						|
    </div>
 | 
						|
    <div class="col-sm-10">
 | 
						|
      <input type="text" class="form-control input_'.$unique_id.'" name="target_url" placeholder="Target URL" value="'.htmlspecialchars($widget_settings['target_url']).'">
 | 
						|
    </div>
 | 
						|
  </div>
 | 
						|
  <div class="form-group">
 | 
						|
    <div class="col-sm-2">
 | 
						|
      <button type="submit" class="btn btn-default">Set</button>
 | 
						|
    </div>
 | 
						|
  </div>
 | 
						|
</form>';
 | 
						|
} else {
 | 
						|
    $widget_settings['title'] = $widget_settings['image_title'];
 | 
						|
    if (strstr($widget_settings['image_url'], '?')) {
 | 
						|
        $widget_settings['image_url'] .= "&".mt_rand();
 | 
						|
    } else {
 | 
						|
        $widget_settings['image_url'] .= "?".mt_rand();
 | 
						|
    }
 | 
						|
    $common_output[]          = '<a target="_blank" href="'.$widget_settings['target_url'].'"><img class="minigraph-image" style="max-width: '.$widget_dimensions['x'].'px; max-height:'.$widget_dimensions['y'].'px;" src="'.$widget_settings['image_url'].'"/></a>';
 | 
						|
}
 |