X-Git-Url: https://jfr.im/git/uguu.git/blobdiff_plain/d8c46ff78ae2707a580f7b0446349122297b434f..044a28cd254c46ffef902482cac0ca79a082e4df:/static/php/grill.php diff --git a/static/php/grill.php b/static/php/grill.php index d36ad0b..002150d 100644 --- a/static/php/grill.php +++ b/static/php/grill.php @@ -1,24 +1,25 @@ + * + * 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 . + */ -// Array of image paths, feel free to add/remove to/from this list -$images = array( - 'img/2.png', - 'img/3.png', - 'img/4.png', - 'img/5.png', - 'img/6.png', - 'img/7.png', - 'img/8.png', - 'img/9.png', - 'img/10.png', - 'img/11.png', - 'img/12.png', - 'img/13.png', - 'img/14.png', - 'img/15.png', -); +require_once 'includes/Core.namespace.php'; -// Redirect to a random image from the above array using status code "303 See Other" -if (headers_sent() === false) { - header('Location: '.$images[array_rand($images)], true, 303); -} +use Core\cuteGrills as cuteGrills; + +cuteGrills::showGrills(); \ No newline at end of file