Search code examples
liferayhookliferay-6liferay-aui

Where can I find (Path in the bundle) the User create/edit screen source?


I am just trying to find the front end source code for user creation and edit pages. But I tried search by different label text and ID's but no use. Can anyone please tell me the path for user add and edit page source files.

enter image description here


Solution

  • As you can see, the URL is something like:

    http://localhost:8080/group/control_panel/manage?p_p_id=125&p_p_lifecycle=0&p_p_state=normal&p_p_mode=view&refererPlid=15595&_125_redirect=%2Fgroup%2Fcontrol_panel%3FrefererPlid%3D15595&_125_struts_action=%2Fusers_admin%2Fedit_user
    

    Searching in struts configurations you can see that struts_action=/users_admin/edit_user should refer to jsp file edit_user.jsp

    That file is located in users_admin... so the path you are seeking should be html/portlet/users_admin inside portal-web project.

    This is on GitHub.