2.13

crnogorac081

I know I can add this manualy, but this is a request to add this to stock 2.13 version
Web developer

dbs

Understand.
A test with additionally 'BACKEND_MODULE_JS' => $this->register_backend_modfiles('js'), works.$footer_template->set_var([
                        'IS_ADMIN'  => ($this->get_user_id()==1),
                        'BACKEND_MODULE_JS' => $this->register_backend_modfiles('js'),
                        'BACKEND_BODY_MODULE_JS' => $this->register_backend_modfiles_body('js'),
                        ..........

backend.js will loaded in the footer.
But seems some modules need the JS before (e.g. module Hints).

So i think it is not needed to do all JS in the footer.
[url="https://onkel-franky.de"]https://onkel-franky.de[/url]

crnogorac081

inside class.admin.php , line 375 inside print_footer() there are only replacements for:



        public function print_footer($activateJsAdmin = false) {
        ...
        $footer_template->set_var(array(
                        'IS_ADMIN'  => ($this->get_user_id()==1),
                        'BACKEND_BODY_MODULE_JS' => $this->register_backend_modfiles_body('js'),
                        'WB_URL' => WB_URL,
                        'ADMIN_URL' => ADMIN_URL,
                        'THEME_URL' => THEME_URL,
                        'HELPER_URL' =>  WB_URL.'/framework/helpers',
             ) );
             ....
    }



So the BACKEND_BODY_MODULE_JS  only displays backend_body.js and there is no placeholder to display backend.js
Web developer

dbs

Ok, and what do you think about the other thing named {BACKEND_BODY_MODULE_JS}?
But i have nothing tested.
[url="https://onkel-franky.de"]https://onkel-franky.de[/url]

crnogorac081

I belive BACKEND_MODULE_JS  in footer.htt calls  backend_body.js file and not backend.js
Web developer

dbs

I thought the {BACKEND_MODULE_JS} calls the backend.js and if you put it into footer.htt it will there executed.
If both are in footer.htt it should call both there.
Maybe Dietmar have a look here.
[url="https://onkel-franky.de"]https://onkel-franky.de[/url]

crnogorac081

I know this, but most modules has js put in backend.js amd not in backend_body.js , so if someone use my backend theme ,modules will not work.. thats why i need backend.js placeholder inside footer.htt
Web developer

dbs

Hi, do you have tried the {BACKEND_MODULE_JS} and the other JS calls
from templates/DefaultTheme/templates/header.htt
put to footer.htt, next to {BACKEND_BODY_MODULE_JS} ?
[url="https://onkel-franky.de"]https://onkel-franky.de[/url]

crnogorac081

Hello,

I saw this post on FB  https://www.facebook.com/254526557891443/posts/3576272312383501/

I need core modification to be able to to inject backend.js into body, instead in head. I am creating bootstrap backend theme. I know there is backend_body.js , but most modules use code from backend.js. Nowdays BS4 themes have js at the end of body tag in order jq.js, , bs.js, then js scripts, so placing backend.js into head will cause errors and it will not work.
Web developer