1  2  3  4  5  6  7  8  9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 
	<?php
namespace hji\membership\models\data;
class Images
{
    protected $collection = array();
    protected $primary;
    public function __construct(array $images = array())
    {
        if (!empty($images))
        {
            $this->addImages((array)$images);
        }
    }
    function addImages($images)
    {
        foreach ($images as $image)
        {
            $this->addImage($image);
        }
    }
    function addImage($image, $primary = false)
    {
        $imageObject = null;
        if ($image instanceof Image)
        {
            $imageObject = $image;
        }
        else if (is_array($image) || is_object($image))
        {
            $image = (array)$image;
            if (isset($image['url']))
            {
                $imageObject = new Image($image);
            }
            else if (!filter_var($image[0], FILTER_VALIDATE_URL) === false)
            {
                $imageObject = new Image(array('url' => $image[0]));
            }
        }
        else if (!filter_var($image, FILTER_VALIDATE_URL) === false)
        {
            $imageObject = new Image(array('url' => $image));
        }
        if ($imageObject)
        {
            if ($primary)
            {
                $this->setPrimary($imageObject);
            }
            else
            {
                $this->collection[] = $imageObject;
            }
        }
    }
    function setPrimary(Image $image)
    {
        $this->primary = $image;
    }
    function getPrimary($defaultIndex = 0)
    {
        if ($this->primary)
        {
            return $this->primary;
        }
        else if ($defaultIndex !== false && isset($this->collection[$defaultIndex]))
        {
            return $this->collection[$defaultIndex];
        }
    }
    function getAll()
    {
        return $this->collection;
    }
}