|
|
<?php
|
|
|
namespace WebPlugin\DataProcess\WebChannel;
|
|
|
namespace WebPlugin\DataProcess;
|
|
|
|
|
|
class Channel
|
|
|
{
|
|
|
|
|
|
public static $formatChannel = array(
|
|
|
'boys' => '\WebPlugin\DataProcess\WebChannel\Channel\Boys',
|
|
|
'girls' => '\WebPlugin\DataProcess\WebChannel\Channel\Girls',
|
|
|
'kids' => '\WebPlugin\DataProcess\WebChannel\Channel\Kids',
|
|
|
'lifestyle' => '\WebPlugin\DataProcess\WebChannel\Channel\Lifestyle'
|
|
|
'boys' => '\WebPlugin\DataProcess\Channel\Boys',
|
|
|
'girls' => '\WebPlugin\DataProcess\Channel\Girls',
|
|
|
'kids' => '\WebPlugin\DataProcess\Channel\Kids',
|
|
|
'lifestyle' => '\WebPlugin\DataProcess\Channel\Lifestyle'
|
|
|
);
|
|
|
|
|
|
public static function getFormat($channel, $data)
|
...
|
...
|
|