aboutsummaryrefslogtreecommitdiffstats
path: root/Zotlabs/Web/Router.php
Commit message (Collapse)AuthorAgeFilesLines
* Deprecate *_config() functions in core.Harald Eilertsen2024-03-241-2/+3
|
* deprecate the ancient $a variableMario2023-09-201-5/+5
|
* get devHilmar R2021-03-011-42/+43
|
* check if file existsMario2019-11-131-1/+1
| | | (cherry picked from commit 52bd27a0280c736e563ccc67a9307cd75bd14d3f)
* functions to support module and widget registration by plugins. These have ↵zotlabs2018-07-121-7/+25
| | | | identical construction to core modules and widgets and are registered just like hooks during addon load. Also additional Apps functions addon_app_installed() and system_app_installed() which will eventually replace feature_installed() for features which are converted to apps. The convention being used is that the module associated with the app calls the appropriate *_app_installed() function and if not present emits descriptive text about the app and exits. This allows one to click on an 'available' app and learn about it. Once installed, the app module behaves normally and may offer functionality or what once were addon settings on the settings/featured page. Refer to zap-addons in the zap repository for examples of how this is being used to eliminate the 'additional features' and 'addon settings' pages.
* simplify webserver logic flow, remove obsolete $a from routerzotlabs2018-01-181-4/+2
|
* Fix whitespace formattingMatthew Dent2017-12-231-14/+14
|
* fix dupe bug in content hooksM.Dent2017-12-231-15/+15
|
* :bulb: Improving Doxygen documentation.Klaus Weidenbach2017-11-031-15/+25
| | | | | Fix some Doxygen parsing errors. Improve hooks documentation.
* move the Link header initialisation from Router (where it does not really ↵zotlabs2017-09-251-18/+0
| | | | belong) to Webserver, where we do similar module specific initialisations prior to calling Router->Dispatch()
* add HTTP link header to channel page, making it pluggablezotlabs2017-09-201-0/+19
|
* now letsencrypt is creating a .htaccess file with re-write rules which kills ↵zotlabs2017-08-311-0/+12
| | | | most of our .well-known routes
* remove obsolete app argument from load_pdlzotlabs2017-03-281-1/+1
|
* move admin permission decision out of the router - it is already provided in ↵zotlabs2017-02-251-6/+0
| | | | the module and the higher level check is causing some oembed redirect issues.
* move dreamhost hack to pluginzotlabs2017-02-011-15/+10
|
* router error reportingzotlabs2016-12-091-6/+12
|
* [TASK] Update Doxyfile and fix Doxygen errors.Klaus Weidenbach2016-10-131-46/+52
| | | | | | Updated Doxyfile to include new folders. Add a list for @hooks tags. Fixed some parsing problems for Doxygen.
* set App::$error on 404 so we don't get two 'Page not found.' page bodies.redmatrix2016-07-261-0/+1
|
* support work for a long-term fix for issue #390, essentially one can specify ↵redmatrix2016-05-171-3/+5
| | | | a theme:schema string anywhere a theme is input. It will be honoured unless an existing schema setting over-rides this behaviour. This should also be backward compatible but the theme selection code has been cleaned up slightly and there may be subtle differences in behaviour after this commit. On my site this required a page refresh as the first page load after this change was a bit confused.
* provide a way for the router to support custom controller objects and allow ↵redmatrix2016-04-211-11/+28
| | | | plugins to register class objects as modules instead of the traditional procedural interface.
* change the 404 warning from the router to reflect the new architectureredmatrix2016-04-201-4/+5
|
* pull in the new object router and a few selected samples for the new ↵redmatrix2016-04-171-5/+14
| | | | controller layout
* cleanup and test of new routerredmatrix2016-04-151-39/+39
|
* get init() working with class modulesredmatrix2016-04-151-9/+15
|
* testing the new router/module coderedmatrix2016-04-151-1/+21
|
* typo in routerredmatrix2016-04-021-1/+1
|
* static Appredmatrix2016-03-311-43/+47
|
* deprecate $a->get_baseurl()redmatrix2016-03-301-1/+1
|
* missing functionredmatrix2016-02-241-1/+0
|
* add router classredmatrix2016-02-191-0/+200