How to override Admin Templates - Joomla! Forum - community, help and support
hi,
i want override:
because change sort order in folders selecting images in media manager. idea place modified "view.html.php" in active background template (hathor) under path:
but approach not working in installation. overriding in way possible in general, , did failed somewhere or approach not working @ all?
thanx
tom
i want override:
code: select all
administrator/components/com_media/views/imagelist/view.html.phpbecause change sort order in folders selecting images in media manager. idea place modified "view.html.php" in active background template (hathor) under path:
code: select all
administrator/templates/hathor/html/com_media/views/imagelist/view.html.phpbut approach not working in installation. overriding in way possible in general, , did failed somewhere or approach not working @ all?
thanx
tom
joomla overrides apply files in /tmpl folder each view. cannot override view.html.php file. still, have 2 options accomplish want...
[1] override default.php file within tmpl folder. before reach code iterates through $this->item, resort array how want it. technique requires know how write , use comparison function in php.
[2] copy entire view (folder of files) imageslist , create clone of different name. modify view how want it. because custom view, should not overwritten upgrades, , can call url references new view.
[1] override default.php file within tmpl folder. before reach code iterates through $this->item, resort array how want it. technique requires know how write , use comparison function in php.
[2] copy entire view (folder of files) imageslist , create clone of different name. modify view how want it. because custom view, should not overwritten upgrades, , can call url references new view.
Comments
Post a Comment