HEX
Server: Apache/2.4.6 (CentOS) OpenSSL/1.0.2k-fips PHP/8.0.30
System: Linux multiplicar 3.10.0-1160.102.1.el7.x86_64 #1 SMP Tue Oct 17 15:42:21 UTC 2023 x86_64
User: root (0)
PHP: 8.0.30
Disabled: NONE
Upload Files
File: /var/www/html/digisferach.sumar.com.py/wp-content/plugins/peepso/classes/vipiconsmodel.php
<?php

class PeepSoVipIconsModel
{
	public $vipicons;

	private $_user_id;

	public function __construct($all = TRUE)
	{
		$post_status = (TRUE == $all) ? "any" : "publish";

		$this->_user_id = get_current_user_id();
		$this->vipicons = array();
		$args = array(
			'post_type' 		=> array('peepso_vip', 'peepso_vip_user'),
			'orderby'			=> 'menu_order',
			'order'				=> 'ASC',
			'posts_per_page' 	=> -1,
			'post_status'		=> $post_status,
		);

		$posts = new WP_Query($args);

		foreach($posts->posts as $post) {
			if(!in_array($post->post_type, $args['post_type'])) {
				continue;
			}

			$vipicon = array(
				'id'				=> $post->ID,
				'post_id'			=> $post->ID,
				'published'			=> intval(('publish' == $post->post_status)),
				'title' 			=> __($post->post_title,'peepso-core'),
				'content' 			=> __($post->post_content,'peepso-core'),
				'icon'				=> $post->post_excerpt,
				'icon_url'			=> plugin_dir_url(dirname(__FILE__)).'/assets/images/vip/'.$post->post_excerpt,
				'custom'			=> intval(('peepso_vip_user' == $post->post_type)),
				'order'				=> intval($post->menu_order),
				'has_default_title' => FALSE,
			);

			if(strstr($post->post_excerpt, 'peepsocustom-')) {
				$id_or_url = str_replace('peepsocustom-', '', $post->post_excerpt);

				if (is_numeric($id_or_url)) {
					$vipicon['icon_url'] = wp_get_attachment_url($id_or_url);
				} else {
					$vipicon['icon_url'] = str_replace('peepsocustom-','', $post->post_excerpt);
				}
			}

			$vipicon['class']	='ps-vipicon-'.$vipicon['id'];

			$this->vipicons[$vipicon['id']] = (object) $vipicon;
		}
	}

	public function vipicon($id) {
		if(!isset($this->vipicons[$id])) {
			// Default to a like to avoid fatals in unlikely case of missing icon
            $fallback = new stdClass();
            $fallback->published = FALSE;
			return $fallback;
		}

		return clone $this->vipicons[$id];
	}
}