]> Raphaël G. Git Repositories - blogbundle/commitdiff
Strict types
authorRaphaël Gertz <git@rapsys.eu>
Fri, 10 Nov 2023 11:43:53 +0000 (12:43 +0100)
committerRaphaël Gertz <git@rapsys.eu>
Fri, 10 Nov 2023 11:43:53 +0000 (12:43 +0100)
Add getAlias function

RapsysBlogBundle.php

index 529e6ea99834fd55a156b9a4b2629870cde00776..2e19b5010b158e2e368e1a9708fe993691c5f9d8 100644 (file)
@@ -1,9 +1,46 @@
-<?php
+<?php declare(strict_types=1);
+
+/*
+ * This file is part of the Rapsys BlogBundle package.
+ *
+ * (c) Raphaël Gertz <symfony@rapsys.eu>
+ *
+ * For the full copyright and license information, please view the LICENSE
+ * file that was distributed with this source code.
+ */
 
 namespace Rapsys\BlogBundle;
 
+use Symfony\Component\DependencyInjection\Container;
 use Symfony\Component\HttpKernel\Bundle\Bundle;
 
-class RapsysBlogBundle extends Bundle
-{
+class RapsysBlogBundle extends Bundle {
+       /**
+        * Return bundle alias
+        *
+        * @return string The bundle alias
+        */
+    public static 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));
+    }
 }