How to add new layout for admin dashboardHow can I prevent SQL injection in PHP?How do I get a YouTube video thumbnail from the YouTube API?How do you parse and process HTML/XML in PHP?How do I check if a string contains a specific word?How to create admin in Zend framework?Using standard layout with Zend Framework Error controllerLayout content is not getting+ ZendEditing template content from the dashboard screen in WordpressSonata Admin: How to remove “Add New” button from dashboard only?Can't access WordPress CMS dashboard via wp-admin login

Why "strap-on" boosters, and how do other people say it?

Passport queue length in UK in relation to arrival method

One word for 'the thing that attracts me'?

How did the Allies achieve air superiority on Sicily?

A nasty indefinite integral

How to make Flex Markers appear in Logic Pro X?

How do I write real-world stories separate from my country of origin?

Real Analysis: Proof of the equivalent definitions of the derivative.

Is ideal gas incompressible?

How can I reduce the size of matrix?

Meaning of "half-crown enclosure"

Team member is vehemently against code formatting

Does the fact that we can only measure the two-way speed of light undermine the axiom of invariance?

Surface of the 3x3x3 cube as a graph

Make the `diff` command look only for differences from a specified range of lines

Coloring lines in a graph the same color if they are the same length

mmap: effect of other processes writing to a file previously mapped read-only

How would a physicist explain this starship engine?

To exponential digit growth and beyond!

Are clauses with "который" restrictive or non-restrictive by default?

why "American-born", not "America-born"?

Managing heat dissipation in a magic wand

Anatomically correct Guivre

Writing "hahaha" versus describing the laugh



How to add new layout for admin dashboard


How can I prevent SQL injection in PHP?How do I get a YouTube video thumbnail from the YouTube API?How do you parse and process HTML/XML in PHP?How do I check if a string contains a specific word?How to create admin in Zend framework?Using standard layout with Zend Framework Error controllerLayout content is not getting+ ZendEditing template content from the dashboard screen in WordpressSonata Admin: How to remove “Add New” button from dashboard only?Can't access WordPress CMS dashboard via wp-admin login






.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty height:90px;width:728px;box-sizing:border-box;








0















In Zend Expressive, the layout is "default" into "templates" folder.



I would like to add "admin" folder into "templates" folder like that:



  • Templates

    • admin

      • app

        • admin-page.phtml


      • error

        • 404.phtml

        • error.phtml


      • layout

        • default.phtml



    • default

      • app

        • home-page.phtml


      • error

        • 404.phtml

        • error.phtml


      • layout

        • default.phtml




I've tried with the tutorials of Zend expressive to add new layout but no success for me...



class AdminPageHandler implements RequestHandlerInterface

private $template;


public function __construct(TemplateRendererInterface $template)

$this->template = $template;


public function handle(ServerRequestInterface $request) : ResponseInterface


$data = [
'admin' => 'layout::admin',
// or 'layout::admin',
// or 'layout::alternative',
];
$content = $this->template->render('pages::admin-page', $data);
return new HtmlResponse($content);




How can I add a new layout for my admin dashboard?



I would like to add new layout for my admin dashboard because the HTML script is different of my Home Application.










share|improve this question






























    0















    In Zend Expressive, the layout is "default" into "templates" folder.



    I would like to add "admin" folder into "templates" folder like that:



    • Templates

      • admin

        • app

          • admin-page.phtml


        • error

          • 404.phtml

          • error.phtml


        • layout

          • default.phtml



      • default

        • app

          • home-page.phtml


        • error

          • 404.phtml

          • error.phtml


        • layout

          • default.phtml




    I've tried with the tutorials of Zend expressive to add new layout but no success for me...



    class AdminPageHandler implements RequestHandlerInterface

    private $template;


    public function __construct(TemplateRendererInterface $template)

    $this->template = $template;


    public function handle(ServerRequestInterface $request) : ResponseInterface


    $data = [
    'admin' => 'layout::admin',
    // or 'layout::admin',
    // or 'layout::alternative',
    ];
    $content = $this->template->render('pages::admin-page', $data);
    return new HtmlResponse($content);




    How can I add a new layout for my admin dashboard?



    I would like to add new layout for my admin dashboard because the HTML script is different of my Home Application.










    share|improve this question


























      0












      0








      0








      In Zend Expressive, the layout is "default" into "templates" folder.



      I would like to add "admin" folder into "templates" folder like that:



      • Templates

        • admin

          • app

            • admin-page.phtml


          • error

            • 404.phtml

            • error.phtml


          • layout

            • default.phtml



        • default

          • app

            • home-page.phtml


          • error

            • 404.phtml

            • error.phtml


          • layout

            • default.phtml




      I've tried with the tutorials of Zend expressive to add new layout but no success for me...



      class AdminPageHandler implements RequestHandlerInterface

      private $template;


      public function __construct(TemplateRendererInterface $template)

      $this->template = $template;


      public function handle(ServerRequestInterface $request) : ResponseInterface


      $data = [
      'admin' => 'layout::admin',
      // or 'layout::admin',
      // or 'layout::alternative',
      ];
      $content = $this->template->render('pages::admin-page', $data);
      return new HtmlResponse($content);




      How can I add a new layout for my admin dashboard?



      I would like to add new layout for my admin dashboard because the HTML script is different of my Home Application.










      share|improve this question
















      In Zend Expressive, the layout is "default" into "templates" folder.



      I would like to add "admin" folder into "templates" folder like that:



      • Templates

        • admin

          • app

            • admin-page.phtml


          • error

            • 404.phtml

            • error.phtml


          • layout

            • default.phtml



        • default

          • app

            • home-page.phtml


          • error

            • 404.phtml

            • error.phtml


          • layout

            • default.phtml




      I've tried with the tutorials of Zend expressive to add new layout but no success for me...



      class AdminPageHandler implements RequestHandlerInterface

      private $template;


      public function __construct(TemplateRendererInterface $template)

      $this->template = $template;


      public function handle(ServerRequestInterface $request) : ResponseInterface


      $data = [
      'admin' => 'layout::admin',
      // or 'layout::admin',
      // or 'layout::alternative',
      ];
      $content = $this->template->render('pages::admin-page', $data);
      return new HtmlResponse($content);




      How can I add a new layout for my admin dashboard?



      I would like to add new layout for my admin dashboard because the HTML script is different of my Home Application.







      php zend-framework zend-expressive






      share|improve this question















      share|improve this question













      share|improve this question




      share|improve this question








      edited Mar 23 at 21:10







      knt92

















      asked Mar 23 at 20:56









      knt92knt92

      2917




      2917






















          1 Answer
          1






          active

          oldest

          votes


















          0














          The template paths can be found in ConfigProvider class => __invoke method, under 'templates' => 'paths' or in getTemplates() method. There you should add a new path:



          /**
          * Returns the templates configuration
          */
          public function getTemplates(): array

          return [
          'paths' => [
          'app' => [__DIR__ . '/../templates/app'],
          'error' => [__DIR__ . '/../templates/error'],
          'layout' => [__DIR__ . '/../templates/layout'],
          'admin' => [__DIR__ . '/../templates/admin'],
          ],
          ];



          then your handler should look something like this



          public function handle(ServerRequestInterface $request) : ResponseInterface


          $data = [
          'admin' => 'layout::admin',
          // or 'layout::admin',
          // or 'layout::alternative',
          ];
          $content = $this->template->render('admin::app/admin-page', $data);
          return new HtmlResponse($content);






          share|improve this answer























            Your Answer






            StackExchange.ifUsing("editor", function ()
            StackExchange.using("externalEditor", function ()
            StackExchange.using("snippets", function ()
            StackExchange.snippets.init();
            );
            );
            , "code-snippets");

            StackExchange.ready(function()
            var channelOptions =
            tags: "".split(" "),
            id: "1"
            ;
            initTagRenderer("".split(" "), "".split(" "), channelOptions);

            StackExchange.using("externalEditor", function()
            // Have to fire editor after snippets, if snippets enabled
            if (StackExchange.settings.snippets.snippetsEnabled)
            StackExchange.using("snippets", function()
            createEditor();
            );

            else
            createEditor();

            );

            function createEditor()
            StackExchange.prepareEditor(
            heartbeatType: 'answer',
            autoActivateHeartbeat: false,
            convertImagesToLinks: true,
            noModals: true,
            showLowRepImageUploadWarning: true,
            reputationToPostImages: 10,
            bindNavPrevention: true,
            postfix: "",
            imageUploader:
            brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
            contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
            allowUrls: true
            ,
            onDemand: true,
            discardSelector: ".discard-answer"
            ,immediatelyShowMarkdownHelp:true
            );



            );













            draft saved

            draft discarded


















            StackExchange.ready(
            function ()
            StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55318291%2fhow-to-add-new-layout-for-admin-dashboard%23new-answer', 'question_page');

            );

            Post as a guest















            Required, but never shown

























            1 Answer
            1






            active

            oldest

            votes








            1 Answer
            1






            active

            oldest

            votes









            active

            oldest

            votes






            active

            oldest

            votes









            0














            The template paths can be found in ConfigProvider class => __invoke method, under 'templates' => 'paths' or in getTemplates() method. There you should add a new path:



            /**
            * Returns the templates configuration
            */
            public function getTemplates(): array

            return [
            'paths' => [
            'app' => [__DIR__ . '/../templates/app'],
            'error' => [__DIR__ . '/../templates/error'],
            'layout' => [__DIR__ . '/../templates/layout'],
            'admin' => [__DIR__ . '/../templates/admin'],
            ],
            ];



            then your handler should look something like this



            public function handle(ServerRequestInterface $request) : ResponseInterface


            $data = [
            'admin' => 'layout::admin',
            // or 'layout::admin',
            // or 'layout::alternative',
            ];
            $content = $this->template->render('admin::app/admin-page', $data);
            return new HtmlResponse($content);






            share|improve this answer



























              0














              The template paths can be found in ConfigProvider class => __invoke method, under 'templates' => 'paths' or in getTemplates() method. There you should add a new path:



              /**
              * Returns the templates configuration
              */
              public function getTemplates(): array

              return [
              'paths' => [
              'app' => [__DIR__ . '/../templates/app'],
              'error' => [__DIR__ . '/../templates/error'],
              'layout' => [__DIR__ . '/../templates/layout'],
              'admin' => [__DIR__ . '/../templates/admin'],
              ],
              ];



              then your handler should look something like this



              public function handle(ServerRequestInterface $request) : ResponseInterface


              $data = [
              'admin' => 'layout::admin',
              // or 'layout::admin',
              // or 'layout::alternative',
              ];
              $content = $this->template->render('admin::app/admin-page', $data);
              return new HtmlResponse($content);






              share|improve this answer

























                0












                0








                0







                The template paths can be found in ConfigProvider class => __invoke method, under 'templates' => 'paths' or in getTemplates() method. There you should add a new path:



                /**
                * Returns the templates configuration
                */
                public function getTemplates(): array

                return [
                'paths' => [
                'app' => [__DIR__ . '/../templates/app'],
                'error' => [__DIR__ . '/../templates/error'],
                'layout' => [__DIR__ . '/../templates/layout'],
                'admin' => [__DIR__ . '/../templates/admin'],
                ],
                ];



                then your handler should look something like this



                public function handle(ServerRequestInterface $request) : ResponseInterface


                $data = [
                'admin' => 'layout::admin',
                // or 'layout::admin',
                // or 'layout::alternative',
                ];
                $content = $this->template->render('admin::app/admin-page', $data);
                return new HtmlResponse($content);






                share|improve this answer













                The template paths can be found in ConfigProvider class => __invoke method, under 'templates' => 'paths' or in getTemplates() method. There you should add a new path:



                /**
                * Returns the templates configuration
                */
                public function getTemplates(): array

                return [
                'paths' => [
                'app' => [__DIR__ . '/../templates/app'],
                'error' => [__DIR__ . '/../templates/error'],
                'layout' => [__DIR__ . '/../templates/layout'],
                'admin' => [__DIR__ . '/../templates/admin'],
                ],
                ];



                then your handler should look something like this



                public function handle(ServerRequestInterface $request) : ResponseInterface


                $data = [
                'admin' => 'layout::admin',
                // or 'layout::admin',
                // or 'layout::alternative',
                ];
                $content = $this->template->render('admin::app/admin-page', $data);
                return new HtmlResponse($content);







                share|improve this answer












                share|improve this answer



                share|improve this answer










                answered Apr 15 at 15:15









                Razvan IonascuRazvan Ionascu

                363




                363





























                    draft saved

                    draft discarded
















































                    Thanks for contributing an answer to Stack Overflow!


                    • Please be sure to answer the question. Provide details and share your research!

                    But avoid


                    • Asking for help, clarification, or responding to other answers.

                    • Making statements based on opinion; back them up with references or personal experience.

                    To learn more, see our tips on writing great answers.




                    draft saved


                    draft discarded














                    StackExchange.ready(
                    function ()
                    StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55318291%2fhow-to-add-new-layout-for-admin-dashboard%23new-answer', 'question_page');

                    );

                    Post as a guest















                    Required, but never shown





















































                    Required, but never shown














                    Required, but never shown












                    Required, but never shown







                    Required, but never shown

































                    Required, but never shown














                    Required, but never shown












                    Required, but never shown







                    Required, but never shown







                    Popular posts from this blog

                    Kamusi Yaliyomo Aina za kamusi | Muundo wa kamusi | Faida za kamusi | Dhima ya picha katika kamusi | Marejeo | Tazama pia | Viungo vya nje | UrambazajiKuhusu kamusiGo-SwahiliWiki-KamusiKamusi ya Kiswahili na Kiingerezakuihariri na kuongeza habari

                    Swift 4 - func physicsWorld not invoked on collision? The Next CEO of Stack OverflowHow to call Objective-C code from Swift#ifdef replacement in the Swift language@selector() in Swift?#pragma mark in Swift?Swift for loop: for index, element in array?dispatch_after - GCD in Swift?Swift Beta performance: sorting arraysSplit a String into an array in Swift?The use of Swift 3 @objc inference in Swift 4 mode is deprecated?How to optimize UITableViewCell, because my UITableView lags

                    Access current req object everywhere in Node.js ExpressWhy are global variables considered bad practice? (node.js)Using req & res across functionsHow do I get the path to the current script with Node.js?What is Node.js' Connect, Express and “middleware”?Node.js w/ express error handling in callbackHow to access the GET parameters after “?” in Express?Modify Node.js req object parametersAccess “app” variable inside of ExpressJS/ConnectJS middleware?Node.js Express app - request objectAngular Http Module considered middleware?Session variables in ExpressJSAdd properties to the req object in expressjs with Typescript