You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
25 lines
366 B
25 lines
366 B
<?php
|
|
|
|
require_once dirname(__FILE__) . '/XmlGoogleMerchants.php';
|
|
|
|
/**
|
|
* Class XmlSpec
|
|
*/
|
|
final class XmlSpec
|
|
{
|
|
/**
|
|
* @var bool
|
|
*/
|
|
public $xml = false;
|
|
|
|
/**
|
|
* XmlSpec constructor.
|
|
* @param $spec
|
|
*/
|
|
public function __construct( $spec, $export_id = false )
|
|
{
|
|
$this->xml = class_exists($spec) ? new $spec( $export_id ) : false;
|
|
}
|
|
|
|
|
|
} |