docono/company-bundle

Pimcore 11.x company information management

Installs: 1 777

Dependents: 0

Suggesters: 0

Security: 0

Stars: 1

Watchers: 3

Forks: 0

Open Issues: 0

Language:JavaScript

Type:pimcore-bundle

v3.0.1 2024-06-06 09:01 UTC

README

interface

Description

The Company Bundle provides to the backend user a simplified management panel to edit all important company information such as:

  • address details
  • opening hours
  • social media links
  • Schema.org details
  • business location coordinates

included translations

  • German (v1.0.0)
  • English (v1.0.0)
  • Ukrainian (v1.0.1) thanks to Olya Batyr
  • Russian (v1.0.1) thanks to Olya Batyr

new in v3.0.1

  • site id bugfix for main site

new in v3

  • Pimcore 11 ready

new in v2

  • Pimcore 10 ready
  • removed templates
  • removed the document tag

new in v1.4

  • document tag adjustment for the latest Pimcore version

new in v1.3

  • Pimcore 6 ready

new in v1.2.2

  • removed Google+ from socialmedias
  • added Metatag accounts (Twitter & Facebook)

new in v1.2.1

  • opening times bugfix (closing times)
  • opening times UX improvements

DO CHECK YOUR TIMES AFTER UPDATE!

new in v1.2.0

  • replaced Twig templates with PHP templates
  • caching

new in v1.1.1

  • added VAT number field
  • added company founding information fields
  • added VKontakte, Medium & Reddit to the social media channels
  • translation fixes
  • style fixes

new in v1.1.0

  • new tab organisation
  • add holidays to the opening hours
  • edit site description & keywords based on the site language
  • new template handling

##Getting Started

  • download bundle with Composer "composer require docono/company-bundle"
  • register the Bundle in the config/bundles.php
  • install the Bundle in the console bin/console pimcore:bundle:install DoconoCompanyBundle
  • make sure the cache is flushed and Pimcore reloaded
  • open the "Company Information" panel and fill in the company details
  • assign data to the view in your controller $this->twig->addGlobal('companyInfo', Config::getData($siteID));

Configuration File

Each site has its own YAML configuration file which is located in the app config folder /var/config.

site ids

The Bundle uses the Pimcore site ids:

  • site_0: the main site
  • site_1: site with the id 1
  • site_2: site with the id 2
  • etc

example

/var/config/docono_company.site_0.yml /var/config/docono_company.site_1.yml

config YAML

company:
    name: DOCONO
    address: 'Bahnhofstrasse 8'
    town: Alpnach
    postalcode: '6055'
    region: OW
    country: CH
    phone: '+41 XX XXX XX XX' 
    fax: '+41 41 670 01 70'
    email: hello@docono.io
    vat-number: ''
socialmedia:
    linkedin: 'https://www.linkedin.com/company/docono/'
    xing: ''
    facebook: 'http://www.facebook.com/docono.io'
    vk: ''
    twitter: ''
    instagram: 'http://www.instagram.com/docono.io'
    pinterest: ''
    youtube: ''
    vimeo: ''
    medium: ''
    reddit: ''
times:
    lunchbreak: true
    monday: { open: '09:00', close: '11:30', open_pm: '13:00', close_pm: '16:00' }
    tuesday: { open: '09:00', close: '11:30', open_pm: '13:00', close_pm: '16:00' }
    wednesday: { open: '09:00', close: '11:30', open_pm: '13:00', close_pm: '16:00' }
    thursday: { open: '09:00', close: '11:30', open_pm: '13:00', close_pm: '16:00' }
    friday: { open: '09:00', close: '11:30', open_pm: '13:00', close_pm: '16:00' }
    saturday: { allday_closed: 'on' }
    sunday: { allday_closed: 'on' }
holiday:
    - { name: 'Easter weekend', start: 30.03.2018, end: 02.04.2018 }
    - { name: 'Christmas & New Year', start: 21.12.2018, end: 06.01.2019 }
seo:
    en: { description: 'site description', keywords: 'keywords, metakeywords' }
    de: { description: 'Seitenbeschreibung', keywords: 'keywords, metakeywords' }
schema:
    type: LocalBusiness
    subtype: ''
    url: 'https://docono.io'
    logo: /var/assets/logo/DOCONO-logo.jpg
    image: /var/assets/logo/DOCONO-logo.jpg
    founder-name: ''
    founding-date: '2017'
    founding-town: 'Alpnach Dorf'
location:
    lat: '47.050168'
    long: '8.309307'
    link: 'https://goo.gl/maps/CPzgDp35bS52'
accounts:
    twitter-site: 'docono'
    twitter-creator: 'docono'
    facebook-publisher: 'https://www.facebook.com/docono.io/'
    facebook-author: 'https://www.facebook.com/docono.io/'
    facebook-app-id: ''

Configuration Helper

If you want to access any of the company information data, simply use the STATIC config helper to access them.

CompanyBundle\Helper\Config

Example

        if (Site::isSiteRequest()) {
            $companyData = Config::getData();

        } else {
            $site = Pimcore\Tool\Frontend::getSiteForDocument($this->document);
            $siteID = !$site ? 'site_0' : 'site_' . $site->getId();
            $companyData = Config::getData($siteID);
        }

        $this->twig->addGlobal('companyInfo', $companyData);