| Server IP : 173.209.174.21 / Your IP : 216.73.216.89 Web Server : Apache/2.4.58 (Ubuntu) System : Linux wcfs-server 6.8.0-124-generic #124-Ubuntu SMP PREEMPT_DYNAMIC Tue May 26 13:00:45 UTC 2026 x86_64 User : nodor ( 1000) PHP Version : 8.3.6 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : ON | Pkexec : OFF Directory : /var/www/thelittlebigshow/wp-content/plugins/robo-gallery/includes/ |
Upload File : |
<?php
/*
* Robo Gallery
* Version: 2.0
* By Robosoft
*
* Contact: https://robosoft.co/robogallery/
* Licensed under the GPLv2 license - http://opensource.org/licenses/gpl-2.0.php
*
* Copyright (c) 2014-2019, Robosoft. All rights reserved.
* Available only in https://robosoft.co/robogallery/
*/
if ( ! defined( 'WPINC' ) ) exit;
class RoboGalleryConfig {
public static function guides() {
$guides = array(
array(
'link'=> 'https://www.youtube.com/watch?v=3vBl9Ke6bsg',
'text'=> __( 'How to install key?', 'robo-gallery' ),
'class'=> 'green'
),
array(
'link'=> 'https://www.youtube.com/watch?v=DdCpRuLFxzk',
'text'=> __( 'How to make custom grid layout?', 'robo-gallery' ),
'class'=> 'violet'
),
array(
'link'=> 'https://www.youtube.com/watch?v=-CuGOo7XRmQ',
'text'=> __( 'New Categories Manager', 'robo-gallery' ),
'class'=> 'green'
),
array(
'link'=> 'https://www.youtube.com/watch?v=mZ_yOXkxRsk',
'text'=> __( 'How to setup Polaroid style?', 'robo-gallery' ),
'class'=> 'violet'
),
array(
'link'=> 'https://www.youtube.com/watch?v=m9XIeqMnhYI',
'text'=> __( 'Install and configuration guide', 'robo-gallery' ),
'class'=> 'green'
),
array(
'link'=> 'https://www.youtube.com/watch?v=RrWn8tMuKsw',
'text'=> __( 'How to manage gallery post?', 'robo-gallery' ),
'class'=> 'violet'
),
array(
'link'=> 'https://www.youtube.com/watch?v=fI3uYOlUbo4',
'text'=> __( 'How to upload gallery images?', 'robo-gallery' ),
'class'=> 'green'
),
array(
'link'=> 'https://www.youtube.com/watch?v=lxDR6E8erBA',
'text'=> __( 'How to create shortcode?', 'robo-gallery' ),
'class'=> 'violet'
),
);
return $guides[ array_rand( $guides ) ];
}
}