> After doing a bit more research, i noticed the indexSuccess (in
> propelAdmin/templates) does use the $this->configuration->hasFilterForm
> ().
> BUT apparently upon template generation (in cache/* directory) the
> $this->configuration is an instance of Base%OBJECT
> %GeneratorConfiguration.
> Shouldn't the admin generator use the %OBJECT%GeneratorConfiguration
> instead of the Base one ?
> Upon runtime it does use the correct one, but not when generating the
> templates in cache/*
> Is this a bug ? Is this normal behaviour ?
> On Dec 2, 11:47 am, DigitalBase <i...@digitalbase.eu> wrote:
> > i really like the logic behind the new admin generator.
> > Now i noticed the Base%MODULE%GeneratorConfiguration.class has a
> > method called hasFilterForm
> > public function hasFilterForm()
> > {
> > return true;
> > }
> > I want to disable all the filters for this view so i decided to
> > override this method, returning false. Nothing happened. When digging
> > into the cache, i noticed the hasFilterForm is not used at all. Then
> > why is it defined ?