podmanImageManager/image.php

47 lines
1.3 KiB
PHP
Raw Normal View History

2020-10-06 02:11:36 -04:00
<?php
namespace podmanImageManager;
use \objectStructs\objectStructs;
class image extends objectStructs
{
/** @var imageAnnotations */
public $annotations;
/** @var imageConfig */
public $config;
/** @var string name of image */
public $image;
public function __construct($vars)
{
$this->imageName = (isset($vars['image']) ? $vars['image'] :
(isset($vars['name']) ? $vars['name'] :
(iiset($vars['imageName'] ? $vars['imageName'] : "" ) ) ) ) ;
if (isset( $vars['imageBasic']->annotations) )
$annotations = $vars['imageBasic']->annotations;
elseif (isset($vars['annotations']))
$annotations = $vars['annotations'];
$this->annotations = new imageAnnotations($annotations);
if (isset($vars['imageConfig']))
$this->config = new imageConfig($vars['imageConfig']);
}
2020-11-29 16:04:45 -05:00
public function getHostController()
{
if (isset($this->annotations->hostController))
return $this->annotations->hostController;
else
return false;
}
public function getClientController()
{
if (isset($this->annotations->clientController))
return $this->annotations->clientController;
else
return false;
}
2020-10-06 02:11:36 -04:00
}