init without trunk
This commit is contained in:
parent
ed24ac4994
commit
bb809e7233
14652 changed files with 177862 additions and 94817 deletions
51
vendor/sensio/generator-bundle/Command/AutoComplete/EntitiesAutoCompleter.php
vendored
Normal file
51
vendor/sensio/generator-bundle/Command/AutoComplete/EntitiesAutoCompleter.php
vendored
Normal file
|
|
@ -0,0 +1,51 @@
|
|||
<?php
|
||||
|
||||
/*
|
||||
* This file is part of the Symfony package.
|
||||
*
|
||||
* (c) Fabien Potencier <fabien@symfony.com>
|
||||
*
|
||||
* For the full copyright and license information, please view the LICENSE
|
||||
* file that was distributed with this source code.
|
||||
*/
|
||||
|
||||
namespace Sensio\Bundle\GeneratorBundle\Command\AutoComplete;
|
||||
|
||||
use Doctrine\ORM\EntityManagerInterface;
|
||||
|
||||
/**
|
||||
* Provides auto-completion suggestions for entities.
|
||||
*
|
||||
* @author Charles Sarrazin <charles@sarraz.in>
|
||||
*/
|
||||
class EntitiesAutoCompleter
|
||||
{
|
||||
private $manager;
|
||||
|
||||
public function __construct(EntityManagerInterface $manager)
|
||||
{
|
||||
$this->manager = $manager;
|
||||
}
|
||||
|
||||
public function getSuggestions()
|
||||
{
|
||||
$configuration = $this->manager
|
||||
->getConfiguration()
|
||||
;
|
||||
|
||||
$namespaceReplacements = array();
|
||||
|
||||
foreach ($configuration->getEntityNamespaces() as $alias => $namespace) {
|
||||
$namespaceReplacements[$namespace.'\\'] = $alias.':';
|
||||
}
|
||||
|
||||
$entities = $configuration
|
||||
->getMetadataDriverImpl()
|
||||
->getAllClassNames()
|
||||
;
|
||||
|
||||
return array_map(function ($entity) use ($namespaceReplacements) {
|
||||
return strtr($entity, $namespaceReplacements);
|
||||
}, $entities);
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue