From 54bb2da9da0dbb5f5946ce3c13639921443c30aa Mon Sep 17 00:00:00 2001 From: =?utf8?q?Rapha=C3=ABl=20Gertz?= Date: Fri, 10 Nov 2023 12:43:53 +0100 Subject: [PATCH] Strict types Add getAlias function --- RapsysBlogBundle.php | 43 ++++++++++++++++++++++++++++++++++++++++--- 1 file changed, 40 insertions(+), 3 deletions(-) diff --git a/RapsysBlogBundle.php b/RapsysBlogBundle.php index 529e6ea..2e19b50 100644 --- a/RapsysBlogBundle.php +++ b/RapsysBlogBundle.php @@ -1,9 +1,46 @@ - + * + * 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)); + } } -- 2.41.0