2017 © Pedro PelĂĄez
 

library web-manager

Web Manager for CMS

image

nattreid/web-manager

Web Manager for CMS

  • Tuesday, June 26, 2018
  • by attreid
  • Repository
  • 1 Watchers
  • 0 Stars
  • 322 Installations
  • PHP
  • 11 Dependents
  • 0 Suggesters
  • 0 Forks
  • 1 Open issues
  • 77 Versions
  • 9 % Grown

The README.md

Web Manager pro CMS

NastavenĂ­

Pƙidat extension do config.neon, (*1)

extensions:
    webManager: NAttreid\WebManager\DI\WebManagerExtension

webManager:
    homepage: 'Homepage:default'
    page: 'Homepage:page'
    onePage: 'Homepage:onePage'
    module: 'Front'

    gallery: # nastaveni galerie
        maxFileSize: 5 #MB
        maxFiles: 20

Pages

Nastavte HomepagePresenter, (*2)

class HomepagePresenter extendes Presenter {
    public $locale;

    /** @var \NAttreid\WebManager\Services\PageService @inject */
    public $pageService;

    public function actionPage($url) {
        $page = $this->pageService->getPage($url, $this->locale);

        // stranku date do template pro zobrazeni
        $this->template->page = $page;
}

a upravte router, (*3)

class FrontRouter extends Router {

    /** @var \NAttreid\WebManager\Services\PageService */
    private $pageService;

    public function __construct($url, \NAttreid\WebManager\Services\PageService $pageService) {
        parent::__construct($url);
        $this->pageService = $pageService;
    }

    public function createRoutes() {
        $routes = $this->getRouter('Front');

        $this->pageService->createRoute($routes, $this->getUrl());

        // nebo pokud je treba vlozit route mezi routy stranky a defaultni strankou

        $this->pageService->createPageRoute($routes, $this->getUrl());

        $routes[] = new Route(...);

        $this->pageService->createDefaultPageRoutes($routes, $this->getUrl());
    }

}

Content

class HomepagePresenter extendes Presenter {
    public $locale;

    /** @var \NAttreid\WebManager\Service @inject */
    public $webManager;

    public function actionPage($url) {
        $content = $this->webManager->getContent('main', $this->locale);

        // stranku date do template pro zobrazeni
        $this->template->content = $content;
}

Hooks

class SomeHook extends \NAttreid\WebManager\Services\Hooks\HookFactory
{
    /** @var IConfigurator */
    protected $configurator;

    public function create(): Component
    {
        $form = $this->formFactory->create();
        $form->setAjaxRequest();

        $form->addText('id', 'webManager.web.hooks.some.clientId')
            ->setDefaultValue($this->configurator->someId);

        $form->addSubmit('save', 'form.save');

        $form->onSuccess[] = [$this, 'someFormSucceeded'];

        return $form;
    }

    public function someFormSucceeded(Form $form, $values)
    {
        $this->configurator->someId = $values->id;

        $this->flashNotifier->success('default.dataSaved');
    }

    // nebo DataGrid

    public function create(): Component
        {
            $form = $this->formFactory->create();
            $form->setAjaxRequest();

            $form->addText('id', 'webManager.web.hooks.some.clientId')
                ->setDefaultValue($this->configurator->someId);

            $form->addSubmit('save', 'form.save');

            $form->onSuccess[] = [$this, 'someFormSucceeded'];

            return $form;
        }

        public function someFormSucceeded(Form $form, $values)
        {
            $this->configurator->someId = $values->id;

            $this->flashNotifier->success('default.dataSaved');
        }
}

A tƙídu zaregistrovat jako sluĆŸbu a načte se automaticky do CMS, (*4)

The Versions

26/06 2018

dev-master

9999999-dev

Web Manager for CMS

  Sources   Download

MIT

The Requires

 

The Development Requires

by Avatar attreid

26/06 2018

1.6.14

1.6.14.0

Web Manager for CMS

  Sources   Download

MIT

The Requires

 

The Development Requires

by Avatar attreid

26/06 2018

1.6.13

1.6.13.0

Web Manager for CMS

  Sources   Download

MIT

The Requires

 

The Development Requires

by Avatar attreid

25/06 2018

1.6.12

1.6.12.0

Web Manager for CMS

  Sources   Download

MIT

The Requires

 

The Development Requires

by Avatar attreid

22/06 2018

1.6.11

1.6.11.0

Web Manager for CMS

  Sources   Download

MIT

The Requires

 

The Development Requires

by Avatar attreid

20/06 2018

1.6.10

1.6.10.0

Web Manager for CMS

  Sources   Download

MIT

The Requires

 

The Development Requires

by Avatar attreid

11/06 2018

1.6.9

1.6.9.0

Web Manager for CMS

  Sources   Download

MIT

The Requires

 

The Development Requires

by Avatar attreid

07/06 2018

1.6.8

1.6.8.0

Web Manager for CMS

  Sources   Download

MIT

The Requires

 

The Development Requires

by Avatar attreid

31/05 2018

1.6.7

1.6.7.0

Web Manager for CMS

  Sources   Download

MIT

The Requires

 

The Development Requires

by Avatar attreid

28/05 2018

1.6.6

1.6.6.0

Web Manager for CMS

  Sources   Download

MIT

The Requires

 

The Development Requires

by Avatar attreid

17/04 2018

1.6.5

1.6.5.0

Web Manager for CMS

  Sources   Download

MIT

The Requires

 

The Development Requires

by Avatar attreid

16/04 2018

1.6.4

1.6.4.0

Web Manager for CMS

  Sources   Download

MIT

The Requires

 

The Development Requires

by Avatar attreid

12/03 2018

1.6.3

1.6.3.0

Web Manager for CMS

  Sources   Download

MIT

The Requires

 

The Development Requires

by Avatar attreid

08/03 2018

1.6.2

1.6.2.0

Web Manager for CMS

  Sources   Download

MIT

The Requires

 

The Development Requires

by Avatar attreid

27/02 2018

1.6.1

1.6.1.0

Web Manager for CMS

  Sources   Download

MIT

The Requires

 

The Development Requires

by Avatar attreid

22/02 2018

1.6.0

1.6.0.0

Web Manager for CMS

  Sources   Download

MIT

The Requires

 

The Development Requires

by Avatar attreid

24/01 2018

1.5.35

1.5.35.0

Web Manager for CMS

  Sources   Download

MIT

The Requires

 

The Development Requires

by Avatar attreid

03/01 2018

dev-orm_v_3

dev-orm_v_3

Web Manager for CMS

  Sources   Download

MIT

The Requires

 

The Development Requires

by Avatar attreid

08/12 2017

1.5.34

1.5.34.0

Web Manager for CMS

  Sources   Download

MIT

The Requires

 

The Development Requires

by Avatar attreid

08/12 2017

dev-master_

dev-master_

Web Manager for CMS

  Sources   Download

MIT

The Requires

 

The Development Requires

by Avatar attreid

08/12 2017

1.5.33

1.5.33.0

Web Manager for CMS

  Sources   Download

MIT

The Requires

 

The Development Requires

by Avatar attreid

05/12 2017

1.5.32

1.5.32.0

Web Manager for CMS

  Sources   Download

MIT

The Requires

 

The Development Requires

by Avatar attreid

15/11 2017

1.5.31

1.5.31.0

Web Manager for CMS

  Sources   Download

MIT

The Requires

 

The Development Requires

by Avatar attreid

18/10 2017

1.5.30

1.5.30.0

Web Manager for CMS

  Sources   Download

MIT

The Requires

 

The Development Requires

by Avatar attreid

17/10 2017

1.5.29

1.5.29.0

Web Manager for CMS

  Sources   Download

MIT

The Requires

 

The Development Requires

by Avatar attreid

18/09 2017

1.5.28

1.5.28.0

Web Manager for CMS

  Sources   Download

MIT

The Requires

 

The Development Requires

by Avatar attreid

15/09 2017

1.5.27

1.5.27.0

Web Manager for CMS

  Sources   Download

MIT

The Requires

 

The Development Requires

by Avatar attreid

14/09 2017

1.5.26

1.5.26.0

Web Manager for CMS

  Sources   Download

MIT

The Requires

 

The Development Requires

by Avatar attreid

14/09 2017

1.5.25

1.5.25.0

Web Manager for CMS

  Sources   Download

MIT

The Requires

 

The Development Requires

by Avatar attreid

04/09 2017

1.5.24

1.5.24.0

Web Manager for CMS

  Sources   Download

MIT

The Requires

 

The Development Requires

by Avatar attreid

01/08 2017

1.5.23

1.5.23.0

Web Manager for CMS

  Sources   Download

MIT

The Requires

 

The Development Requires

by Avatar attreid

12/07 2017

1.5.22

1.5.22.0

Web Manager for CMS

  Sources   Download

MIT

The Requires

 

The Development Requires

by Avatar attreid

12/07 2017

1.5.21

1.5.21.0

Web Manager for CMS

  Sources   Download

MIT

The Requires

 

The Development Requires

by Avatar attreid

12/07 2017

1.5.20

1.5.20.0

Web Manager for CMS

  Sources   Download

MIT

The Requires

 

The Development Requires

by Avatar attreid

12/07 2017

1.5.19

1.5.19.0

Web Manager for CMS

  Sources   Download

MIT

The Requires

 

The Development Requires

by Avatar attreid

04/07 2017

1.5.18

1.5.18.0

Web Manager for CMS

  Sources   Download

MIT

The Requires

 

The Development Requires

by Avatar attreid

04/07 2017

1.5.17

1.5.17.0

Web Manager for CMS

  Sources   Download

MIT

The Requires

 

The Development Requires

by Avatar attreid

02/06 2017

1.5.16

1.5.16.0

Web Manager for CMS

  Sources   Download

MIT

The Requires

 

The Development Requires

by Avatar attreid

01/06 2017

1.5.15

1.5.15.0

Web Manager for CMS

  Sources   Download

MIT

The Requires

 

The Development Requires

by Avatar attreid

26/05 2017

1.5.14

1.5.14.0

Web Manager for CMS

  Sources   Download

MIT

The Requires

 

The Development Requires

by Avatar attreid

16/05 2017

1.5.13

1.5.13.0

Web Manager for CMS

  Sources   Download

MIT

The Requires

 

The Development Requires

by Avatar attreid

10/05 2017

1.5.12

1.5.12.0

Web Manager for CMS

  Sources   Download

MIT

The Requires

 

The Development Requires

by Avatar attreid

10/05 2017

1.5.11

1.5.11.0

Web Manager for CMS

  Sources   Download

MIT

The Requires

 

The Development Requires

by Avatar attreid

04/05 2017

1.5.10

1.5.10.0

Web Manager for CMS

  Sources   Download

MIT

The Requires

 

The Development Requires

by Avatar attreid

04/05 2017

1.5.6

1.5.6.0

Web Manager for CMS

  Sources   Download

MIT

The Requires

 

The Development Requires

by Avatar attreid

03/05 2017

1.5.5

1.5.5.0

Web Manager for CMS

  Sources   Download

MIT

The Requires

 

The Development Requires

by Avatar attreid

02/05 2017

1.5.4

1.5.4.0

Web Manager for CMS

  Sources   Download

MIT

The Requires

 

The Development Requires

by Avatar attreid

28/04 2017

1.5.3

1.5.3.0

Web Manager for CMS

  Sources   Download

MIT

The Requires

 

The Development Requires

by Avatar attreid

25/04 2017

1.5.2

1.5.2.0

Web Manager for CMS

  Sources   Download

MIT

The Requires

 

The Development Requires

by Avatar attreid

24/04 2017

1.5.1

1.5.1.0

Web Manager for CMS

  Sources   Download

MIT

The Requires

 

The Development Requires

by Avatar attreid

19/04 2017

1.5.0

1.5.0.0

Web Manager for CMS

  Sources   Download

MIT

The Requires

 

The Development Requires

by Avatar attreid

07/04 2017

1.4.4

1.4.4.0

Web Manager for CMS

  Sources   Download

MIT

The Requires

 

The Development Requires

by Avatar attreid

07/04 2017

1.4.3

1.4.3.0

Web Manager for CMS

  Sources   Download

MIT

The Requires

 

The Development Requires

by Avatar attreid

06/04 2017

1.4.2

1.4.2.0

Web Manager for CMS

  Sources   Download

MIT

The Requires

 

The Development Requires

by Avatar attreid

05/04 2017

1.4.1

1.4.1.0

Web Manager for CMS

  Sources   Download

MIT

The Requires

 

The Development Requires

by Avatar attreid

05/04 2017

1.4.0

1.4.0.0

Web Manager for CMS

  Sources   Download

MIT

The Requires

 

The Development Requires

by Avatar attreid

30/03 2017

1.3.11

1.3.11.0

Web Manager for CMS

  Sources   Download

MIT

The Requires

 

The Development Requires

by Avatar attreid

24/03 2017

1.3.10

1.3.10.0

Web Manager for CMS

  Sources   Download

MIT

The Requires

 

The Development Requires

by Avatar attreid

23/03 2017

1.3.9

1.3.9.0

Web Manager for CMS

  Sources   Download

Unlicense

The Requires

 

The Development Requires

by Avatar attreid

06/03 2017

1.3.8

1.3.8.0

Web Manager for CMS

  Sources   Download

Unlicense

The Requires

 

The Development Requires

by Avatar attreid

02/03 2017

1.3.7

1.3.7.0

Web Manager for CMS

  Sources   Download

Unlicense

The Requires

 

The Development Requires

by Avatar attreid

02/03 2017

1.3.6

1.3.6.0

Web Manager for CMS

  Sources   Download

Unlicense

The Requires

 

The Development Requires

by Avatar attreid

02/03 2017

1.3.5

1.3.5.0

Web Manager for CMS

  Sources   Download

Unlicense

The Requires

 

The Development Requires

by Avatar attreid

25/02 2017

1.3.4

1.3.4.0

Web Manager for CMS

  Sources   Download

Unlicense

The Requires

 

The Development Requires

by Avatar attreid

23/02 2017

1.3.3

1.3.3.0

Web Manager for CMS

  Sources   Download

Unlicense

The Requires

 

The Development Requires

by Avatar attreid

23/02 2017

1.3.2

1.3.2.0

Web Manager for CMS

  Sources   Download

Unlicense

The Requires

 

The Development Requires

by Avatar attreid

23/02 2017

1.3.1

1.3.1.0

Web Manager for CMS

  Sources   Download

Unlicense

The Requires

 

The Development Requires

by Avatar attreid

23/02 2017

1.3.0

1.3.0.0

Web Manager for CMS

  Sources   Download

Unlicense

The Requires

 

The Development Requires

by Avatar attreid

22/02 2017

1.2.0

1.2.0.0

Web Manager for CMS

  Sources   Download

Unlicense

The Requires

 

The Development Requires

by Avatar attreid

17/02 2017

1.1.6

1.1.6.0

Web Manager for CMS

  Sources   Download

Unlicense

The Requires

 

The Development Requires

by Avatar attreid

16/02 2017

1.1.5

1.1.5.0

Web Manager for CMS

  Sources   Download

Unlicense

The Requires

 

The Development Requires

by Avatar attreid

15/02 2017

1.1.4

1.1.4.0

Web Manager for CMS

  Sources   Download

Unlicense

The Requires

 

The Development Requires

by Avatar attreid

14/02 2017

1.1.3

1.1.3.0

Web Manager for CMS

  Sources   Download

Unlicense

The Requires

 

The Development Requires

by Avatar attreid

19/01 2017

1.1.2

1.1.2.0

Web Manager for CMS

  Sources   Download

Unlicense

The Requires

 

The Development Requires

by Avatar attreid

18/01 2017

1.1.1

1.1.1.0

Web Manager for CMS

  Sources   Download

Unlicense

The Requires

 

The Development Requires

by Avatar attreid

18/01 2017

1.1.0

1.1.0.0

Web Manager for CMS

  Sources   Download

Unlicense

The Requires

 

The Development Requires

by Avatar attreid

17/01 2017

1.0.0

1.0.0.0

Web Manager for CRM

  Sources   Download

Unlicense

The Requires

  • nattreid/cookiepolicy ~1.0
  • nattreid/crm ~1.0
  • php >= 5.6

 

The Development Requires

by Avatar attreid