| Server IP : 170.10.162.208 / Your IP : 216.73.216.38 Web Server : LiteSpeed System : Linux altar19.supremepanel19.com 4.18.0-553.69.1.lve.el8.x86_64 #1 SMP Wed Aug 13 19:53:59 UTC 2025 x86_64 User : deltahospital ( 1806) PHP Version : 7.4.33 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : OFF | Pkexec : OFF Directory : /home1/deltahospital/www/wp-content/plugins/ml-slider/admin/slideshows/ |
Upload File : |
<?php
if (!defined('ABSPATH')) die('No direct access.');
/**
* Class to handle slideshows
*/
class MetaSlider_Slideshows {
/**
* Constructor
*/
public function __construct() {}
/**
* Method to get all slideshows from the database
*
* @return array
*/
public function all() {
$args = array(
'post_type' => 'ml-slider',
'post_status' => 'publish',
'orderby' => 'date',
'suppress_filters' => 1, // wpml, ignore language filter
'order' => 'ASC',
'posts_per_page' => -1
);
$slideshows = get_posts(apply_filters('metaslider_all_meta_sliders_args', $args));
return array_map(array($this, 'build_slideshow_object'), $slideshows);
}
/**
* Method to build out the slideshow object
* For now this wont include slides. They will be handled separately.
*
* @param object $slideshow - The slideshow object
* @return array
*/
public function build_slideshow_object($slideshow) {
return array(
'id' => $slideshow->ID,
'title' => $slideshow->post_title,
'created_at' => $slideshow->post_date,
'modified_at' => $slideshow->post_modified
);
}
/**
* Method to get the latest slideshow
*/
public function recently_modified() {}
/**
* Method to get all slideshows from the database
*
* @param string $id - The id of a slideshow
*/
public function single($id) {}
}