Pages
- Edited
@grantus @Kakifrucht @pwFoo I'm working on dynamic page.
if you wiling to test it you can upgrade to latest dev version via following command:
composer require "sijad/flarum-ext-pages":"dev-master"
a quick reference
- create a folder named
pages
in your flarum root folder. - create php files within
pages
folder.- you can create files in subfolder.
- files extension should be
.php
.
- you can include created files in admin editor via
@include({PATH})
command.{PATH}
should be path to the file which placed inpages
folder.- if you want use blade syntax, file's name should ends with
.blade.php
.
Examples
- path:
{FLARUM_ROOT}/pages/mypage.php
>@include(mypage.php)
- path:
{FLARUM_ROOT}/pages/subfolder/mypage.php
>@include(subfolder/mypage.php)
- path:
{FLARUM_ROOT}/pages/page.blade.php
>@include(page.blade.php)
Think I need an additional option to install your dev version?
[InvalidArgumentException]
Could not find package sijad/flarum-ext-pages@dev-master at any version for your minimum-stability (beta). Check the package spelling or your minimum-stability
Tried to change the composer.json and killed my test flarum with the composer upgrade.
Is there no simple way to install a dev plugins just with a composer command?
- Edited
Tested with a new flarum docker container. Installed successful. Thanks
UPDATE
Simple test works fine!
Will try to bootstrap the CMF of my choice inside ?
sijad Really cool, thanks. Right now one must ensure that the files are in UTF encoding, ANSI will in most cases fail.
HTML Option in ACP without php include.
@sijad So far my dynamic php pages look great! However, I'm still testing them and the first thing I noticed was my pagination is not working.
For example, right now my test page is http://localhost/flarum/p/2-test?result=2 and it just reloads the same results. I'm assuming it's something with this extension? Because I've been using the same pagination for a long time.
Thanks.
- Edited
@sijad , a important thing.
When user try a page no created, need to return 404.
For example, just have page 1 and 2, and user try http://site.com/p/3
A js error will be created, it's not a good idea. :/
Doesn't work with beta6:
Class Flarum\Forum\Controller\ClientController does not exist
can this custom pages be activated as a homepage/landing page?