承接 docono/company-bundle 相关项目开发

从需求分析到上线部署,全程专人跟进,保证项目质量与交付效率

邮箱:yvsm@zunyunkeji.com | QQ:316430983 | 微信:yvsm316

docono/company-bundle

Composer 安装命令:

composer require docono/company-bundle

包简介

Pimcore 11.x company information management

README 文档

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

Name Return Description
getFile() string get YAML config file for current site
getFileForSite(String $site) string get YAML config file for given site id
getData(String $site=null) array array of all data
getCompany() array array of the 'company' namespace
getSocialmedia() array array of the 'socialmedia' namespace
getOpeningtimes() array array of the 'times' namespace
getHolidays() array array of the 'holiday' namespace
getSEO(string $language='en') array array of the 'seo' namespace
getSchema() array array of the 'schema' namespace
getLocation() array array of the 'location' namespace
getAccounts() array array of the 'accounts' namespace

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);

统计信息

  • 总下载量: 1.83k
  • 月度下载量: 0
  • 日度下载量: 0
  • 收藏数: 1
  • 点击次数: 2
  • 依赖项目数: 0
  • 推荐数: 0

GitHub 信息

  • Stars: 1
  • Watchers: 2
  • Forks: 0
  • 开发语言: JavaScript

其他信息

  • 授权协议: GPL-3.0
  • 更新时间: 2017-10-28

承接程序开发

PHP开发

VUE

Vue开发

前端开发

小程序开发

公众号开发

系统定制

数据库设计

云部署

网站建设

安全加固