URLs
Introduction
e107::url($plugin, $key, $row, $options);Parameter
Type
Description
Mandatory?
Examples
Example 1: Forum topic URLs
// these values are usually loaded from the database.
$data = array(
'forum_sef' => 'my-sef-forum-name',
'thread_id' => 2,
'thread_sef' => 'my-forum-topic'
);
$url = e107::url('forum','topic', $data);Example 2: Using optional parameters
Last updated
Was this helpful?