Home > Article > CMS Tutorial > How to modify the display page after phpcms background login
First open Phpcms->modules->admin->templates->main.tpl.php
1, Security Tips section
<h6><?php echo L('main_safety_tips')?></h6>
2. Authorization information
<h6><?php echo L('main_license')?></h6>
3. Team part
<h6><?php echo L('main_product_team')?></h6>
4. System information part
<h6><?php echo L('main_sysinfo')?></h6>
5. Shortcut part
<h6><?php echo L('main_shortcut')?></h6>
6. Personal information section
<h6><?php echo L('personal_information')?></h6>
If you want to integrate other pages into this page, you can use
isset($_COOKIE['Okxll_admin_username'])
and
isset($_COOKIE['Okxll_userid'])
to verify permissions.
Related recommendations: phpcms tutorial
The above is the detailed content of How to modify the display page after phpcms background login. For more information, please follow other related articles on the PHP Chinese website!