multidimensional / cakephp-subdomains
Easily add sub domains to your CakePHP application using route prefixes.
Installs: 391
Dependents: 0
Suggesters: 0
Security: 0
Stars: 4
Watchers: 5
Forks: 5
Open Issues: 0
Type:cakephp-plugin
Requires
- php: >=5.5.9
- cakephp/cakephp: ~3.3
Requires (Dev)
This package is auto-updated.
Last update: 2024-10-20 22:15:08 UTC
README
Easily add sub domains to your CakePHP application using route prefixes. Based on code created by chinpei215.
Requirements
- CakePHP 3.3+
- PHP 5.5.9+
Installation
You can install this plugin into your CakePHP application using composer.
The recommended way to install composer packages is:
composer require --prefer-dist multidimensional/cakephp-subdomains
Setup
Load the plugin by running following command in terminal:
bin/cake plugin load Multidimensional/Subdomains -b -r
Or by manually adding following line to your app's config/bootstrap.php
:
Plugin::load('Multidimensional/Subdomains', ['bootstrap' => true, 'routes' => true]);
In order to get the most out of the HTML link generator in CakePHP, we recommend installing our custom Subdomain HTML helper into your master AppView.php.
// src/View/AppView.php class AppView extends View { public function initialize() { parent::initialize(); $this->loadHelper('Html', [ 'className' => 'Multidimensional/Subdomains.SubdomainHtml' ]); } }
Configuration
Run the installation script command in termainl:
bin/cake SubdomainsInstall
This command will allow you to automatically create a configuration file with the list of your subdomains for the plugin to use. You can also run this command to add or delete additional subdomains.
Alternatively, you can create a config/subdomains.php
file in your main CakePHP config folder:
return [ 'Multidimensional/Subdomains' => ['Subdomains' => ['{SUBDOMAIN_1}', '{SUBDOMAIN_2}', /*...*/ '{SUBDOMAIN_N}'] ] ];
Usage
The plugin will automatically add the subdomains you specify as CakePHP prefixes.
When generating links, include the subdomain prefix you want to use and the Router will automatically create the link using the subdomain URL.
//Link to http://admin.example.com/articles/ $this->Html->link(['prefix'=>'admin', 'controller'=>'Articles', 'action'=>'index']);
Advanced options when the custom HTML helper is installed.
//Link to http://example.com/articles/ $this->Html->link(['prefix'=>false, 'controller'=>'Articles', 'action'=>'index']); //Link to http://www.example.com/articles/ $this->Html->link(['prefix'=>'www', 'controller'=>'Articles', 'action'=>'index']);
Note: The www prefix should be used sparingly. If you require the www to be prepended to your domain, we would recommend installing a middleware plugin that forces the www to be added to the domain. In any case, setting 'prefix' = false is the best practice.
Contributing
Please help our project by creating a fork, and sending a pull request.
We need help writing unit tests, implementing Travis-CI and generally improving the functionality of the code.
To Do
- Travis CI and PHPUnit Testing
License
The MIT License (MIT)
Copyright (c) 2016 multidimension.al
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in
all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
THE SOFTWARE.