+447448645394 info@lifetech.host
Maplite

Maplite is a lightweight ORM for CRUD database operations

API – consumption

Lifetech ecosystem interact with internal and external APIs for seamless data exchange.

Classes and Functions

Reusable components, classes, and functions that power the system’s functionality.

Admin-Backend Interface

Admin dashboard and control panel that facilitate system administration.

General

Post other questions or discussion that is not under those listed category

PHP

PHP syntax, functions, object-oriented programming (OOP), database interactions and much more,

LINKING OF PAGES.

Posted by classiclife On 20-Feb-2025 11:41 am

How can we reference another URL page on a link.

1 23

Comments

Teejay24 1 year ago

In Lifetech, referencing another URL page on a link is straightforward. To do this, you'll need two pieces of information: the module name and the content name you want to reference. Next, you'll pass the module name and content name to the URL, along with the site host function.

you can get the module name and the content name from menu management by navigating to structure menu.


then you'll need site host function, "lifetech_site_host_address();" to get the site host address.

usage example.

Using html a tag:


<a href="{! lifetech_site_host_address(); !}/md_lifetech_login/forgot_password_page" target="_blank" class="text-body">Forgot password?</a>


the md_lifetech_login is the module name while the forgot_password_page is the content name



0