How to know the name of block? like calendar, reactions, public news....
How to know the page name? like homepage, evens, news....
thanks
How to know the name of block? like calendar, reactions, public news.... How to know the page name? like homepage, evens, news....
thanks |
check sys_page_compose table in your database or /administration/pageBuilder.php
How to know the name of block? like calendar, reactions, public news.... How to know the page name? like homepage, evens, news....
thanks
|
Thanks adultdate for your reply! What I need to know is how I can get in the code (eg: Bx ... Template.php) the name of the page for example if the user its on hopepage or events ... I want to detect the name of the page run for example the Page that comes from sys_page_compose? Thanks |
Finally I'm found solution: if can help somebody!
on any page code add this code:
$RequestURINow = basename($_SERVER['REQUEST_URI'], '?' . $_SERVER['QUERY_STRING']); echo $RequestURINow;
if homepage = "index.php" if module home = "home"
thanks
|
Hello carlosramos!
Codename of current page can be found via printing $this -> sPageName field of any of page view class. It may looks like: $oPage = new BxSmthPage(); echo $oPage->sPageName;
With the best regards, Leonid |