Default Actions
by in CodeSOD on 2023-09-28Bleu supports a Pimcore-based PHP site. Pimcore is a rather sprawling enterprise system for PHP. Like many Model-View-Controller type frameworks, maps HTTP requests to actions on controllers. Bleu's team has several "default" actions configured on their controllers. Let's take a look at a few of them.
public function searchAction()
{
// TODO: replace with actual search
// instead of static page showing all important subpages.
}