%PDF- %PDF-
| Direktori : /home/tjamichg/cursos.tjamich.gob.mx/vendor/swftools/swftools/src/SwfTools/ |
| Current File : /home/tjamichg/cursos.tjamich.gob.mx/vendor/swftools/swftools/src/SwfTools/EmbeddedObject.php |
<?php
/*
* This file is part of PHP-SwfTools.
*
* (c) Alchemy <info@alchemy.fr>
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
namespace SwfTools;
class EmbeddedObject
{
protected $option;
protected $type;
protected $id;
const TYPE_SHAPE = 'Shape';
const TYPE_MOVIECLIP = 'MovieClip';
const TYPE_JPEG = 'JPEG';
const TYPE_PNG = 'PNG';
const TYPE_FRAME = 'Frame';
const TYPE_SOUND = 'Sound';
/**
*
* @param string $option The option to pass to the command line to extract
* @param type $type The type of embedded object, one of the self::TYPE_* constants
* @param int $id The id of the object
*/
public function __construct($option, $type, $id)
{
$this->option = $option;
$this->type = $type;
$this->id = (int) $id;
}
/**
*
* @return string
*/
public function getOption()
{
return $this->option;
}
/**
*
* @return string
*/
public function getType()
{
return $this->type;
}
/**
*
* @return int
*/
public function getId()
{
return $this->id;
}
/**
* Detect type based on the raw output
*
* @param string $type The raw output
* @return string
*/
public static function detectType($type)
{
$type = strtolower($type);
switch ($type) {
case 'frame':
case 'frames':
return self::TYPE_FRAME;
break;
case 'shape':
case 'shapes':
return self::TYPE_SHAPE;
break;
case 'jpeg':
case 'jpegs':
return self::TYPE_JPEG;
break;
case 'png':
case 'pngs':
return self::TYPE_PNG;
break;
case 'sound':
case 'sounds':
return self::TYPE_SOUND;
break;
case 'movieclip':
case 'movieclips':
return self::TYPE_MOVIECLIP;
break;
}
return null;
}
}