aubiplus / seo
In your view scripts or controller actions, often it is necessary to convert strings to perform well in urls. You can use this helper classes to perform these behaviors for you.
Installs: 2 348
Dependents: 0
Suggesters: 0
Security: 0
Stars: 1
Watchers: 3
Forks: 0
Open Issues: 0
Requires
- php: >=7.0.0
- zendframework/zend-config: ~2.6
- zendframework/zend-loader: ~2.5
- zendframework/zend-modulemanager: ~2.7
- zendframework/zend-mvc: ~3.0
- zendframework/zend-servicemanager: ~3.1
- zendframework/zend-view: ~2.8
Requires (Dev)
- phpunit/phpunit: ~4.0
This package is not auto-updated.
Last update: 2025-03-29 21:45:46 UTC
README
In your view scripts or controller actions, often it is necessary to convert strings to perform well in urls. You can use this helper classes to perform these behaviors for you.
For example: The string this is just an example
will be converted to this-is-just-an-example
.
Installation
./composer.phar require aubiplus\seo
Usage
Sample module config:
<?php return [ 'seo' => [ 'seperator' => '-', 'chars' => [ '/ä|Ä/' => 'ae', '/ö|Ö/' => 'oe', '/ü|Ü/' => 'ue' ] ] ];
Seperator
The defined seperator is used to replace all whitespaces with the given character.
Chars
In the chars section you can define own replacements. As you can see in the sample module config the key is a regular expression which will be replaced by the value.
Use service
$urlService = $serviceManager->get(\Aubiplus\Seo\Service\Url::class); echo $urlService->create("this is just an example");
Use view helper
echo $this->seoUrl("this is just an example");
Use controller plugin
echo $this->seoUrl("this is just an example");
Questions / support
If you're having trouble with this module feel free and create an issue.