superrb / kunstmaan-company
Company bundle for use with KunstmaanBundles CMS
Installs: 3 581
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 5
Forks: 0
Open Issues: 0
Requires
- superrb/kunstmaan-addons: ^5.0
README
Installation
Step 1: Install the Bundle
composer require superrb/kunstmaan-company
Step 2: Add the admin routes
Add the following to your /config/routes.yaml
superrbkunstmaancompanybundle_company_admin_list: resource: '@SuperrbKunstmaanCompanyBundle/Controller/CompanyAdminListController.php' type: annotation prefix: /%kunstmaan_admin.admin_prefix%/company superrbkunstmaancompanybundle_address_admin_list: resource: '@SuperrbKunstmaanCompanyBundle/Controller/AddressAdminListController.php' type: annotation prefix: /%kunstmaan_admin.admin_prefix%/company/address
Step 3: Generate Database Tables
IMPORTANT: If upgrading KunstmaanCompanyBundle from 1.x.x to 2.x.x, you must run
bin/console superrb:kunstmaan-company:migrate-addresses
prior to running any Doctrine schema updates, otherwise you will lose existing address data.
You can use Doctrine Migrations or a schema update, it is your choice
bin/console doctrine:migrations:diff bin/console doctrine:migrations:migrate
or
bin/console doctrine:schema:update --force
Usage
Output Schema on a page of your choice
{{ generate_company_schema() | raw }}
Access the company
Twig global
You can access the company
Twig global from any template, for example if you wanted to output the phone number:
{% if company.phone is not empty %} <a href="tel:{{ company.phone | phone_number_format('INTERNATIONAL') }}">{{ company.phone | phone_number_format('NATIONAL') }}</a> {% endif %}
Get the Address
{{ company.address("\n") | nl2br }}
You can send a delimiter for the address parts, e.g. a comma or new line.
Get Social Medias
You can retrieve a list of the available social media links available for the company. The example shows how you can easily create a list of icons and links.
<ul class="social"> {% for network in company.socialMedias %} <li class="social-item"> <a href="{{ network.url }}" class="social-link social-link--{{ network.key }}" target="_blank" rel="noopener"> <span class="screenreader-text">{{ network.key | capitalize }}</span> </a> </li> {% endfor %} </ul>
Issues and Troubleshooting
All issues: tech@superrb.com