Maslosoft Mangan API
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49
<?php
/**
* This software package is licensed under AGPL or Commercial license.
*
* @package maslosoft/mangan
* @licence AGPL or Commercial
* @copyright Copyright (c) Piotr Masełkowski <pmaselkowski@gmail.com>
* @copyright Copyright (c) Maslosoft
* @copyright Copyright (c) Others as mentioned in code
* @link https://maslosoft.com/mangan/
*/
namespace Maslosoft\Mangan\Helpers;
use Maslosoft\Mangan\Interfaces\CollectionNameInterface;
use Maslosoft\Mangan\Meta\ManganMeta;
/**
* CollectionNamer
* Name collection from model instance. Order of name resolving:
* <ul>
* <li>`CollectionName` annotation</li>
* <li>Model method `getCollectionName`</li>
* <li>Fully qualified class name with `\` replaced with `.`</li>
* </ul>
* @author Piotr Maselkowski <pmaselkowski at gmail.com>
*/
class CollectionNamer
{
public static function nameCollection($model)
{
if ($model instanceof CollectionNameInterface)
{
return $model->getCollectionName();
}
$meta = ManganMeta::create($model)->type();
$name = $meta->collectionName;
if($name)
{
return $name;
}
$name = get_class($model);
return ltrim(str_replace('\\', '.', $name), '\\');
}
}
API documentation generated by ApiGen