| 1 | <?php |
||
| 5 | class Mapper extends AbstractConfig |
||
| 6 | {
|
||
| 7 | /** |
||
| 8 | * Config. |
||
| 9 | * |
||
| 10 | * @var array |
||
| 11 | */ |
||
| 12 | protected $config = [ |
||
| 13 | 'title' => ['Title', 'ObjectName'], |
||
| 14 | 'description' => ['Description', 'Caption-Abstract', 'ImageDescription'], |
||
| 15 | 'keywords' => ['Keywords', 'Subject'], |
||
| 16 | ]; |
||
| 17 | |||
| 18 | /** |
||
| 19 | * Get metadata aliases. |
||
| 20 | * |
||
| 21 | * @param string $name |
||
| 22 | * @return array |
||
| 23 | */ |
||
| 24 | public function getAliases($name) |
||
| 34 | } |