Invision Community 4: SEO, prepare for v5 and dormant account notifications By Matt Monday at 02:04 PM
sobrenome Posted November 10, 2020 Posted November 10, 2020 I am working on a Pages template and I want to get the URL of a record of another database. To get the URL of the current database I am using this code: {{$url = \IPS\Http\Url::internal( "app=cms&module=pages&controller=page&path=" . \IPS\cms\Pages\Page::loadByDatabaseId( $record->database()->id )->full_path, 'front', 'content_page_path' );}} And how to get the URL of a record from another database using the record primary id field?
bfarber Posted November 10, 2020 Posted November 10, 2020 Say your other database ID is 7 an the record primary id is 50. {{$url = \IPS\cms\Records7::load( 50 )->url()}} Meddysong and sobrenome 1 1
Recommended Posts