]> Raphaƫl G. Git Repositories - packbundle/blobdiff - RapsysPackBundle.php
Move alias generation in RapsysPackBundle::getAlias
[packbundle] / RapsysPackBundle.php
index 260ce22420a1ecc50f1f57ae2453b4a68586378c..ca879af6cfdc39050e1166ea57907c1ae2a65e81 100644 (file)
 
 namespace Rapsys\PackBundle;
 
+use Symfony\Component\DependencyInjection\Container;
 use Symfony\Component\HttpKernel\Bundle\Bundle;
 
 /**
  * {@inheritdoc}
  */
-class RapsysPackBundle extends Bundle {}
+class RapsysPackBundle extends Bundle {
+       /**
+        * Return bundle alias
+        *
+        * @return string The bundle alias
+        */
+    public function getAlias(): string {
+               //With namespace
+               if ($npos = strrpos(static::class, '\\')) {
+                       //Set name pos
+                       $npos++;
+               //Without namespace
+               } else {
+                       $npos = 0;
+               }
+
+               //With trailing bundle
+               if (substr(static::class, -strlen('Bundle'), strlen('Bundle')) === 'Bundle') {
+                       //Set bundle pos
+                       $bpos = strlen(static::class) - $npos - strlen('Bundle');
+               //Without bundle
+               } else {
+                       //Set bundle pos
+                       $bpos = strlen(static::class) - $npos;
+               }
+
+               //Return underscored lowercase bundle alias
+               return Container::underscore(substr(static::class, $npos, $bpos));
+    }
+}