<?php
/**
* Jamroom 5 include.php module
* @copyright 2016 by Your Details - All Rights Reserved
* @author Your Name - yourname@wherever.net
* 21 07, 2016
*/
// make sure we are not being called directly
defined('APP_DIR') or exit();
/**
* meta
*/
function apBar_meta()
{
$_tmp = array(
'name' => 'Bar Moudle',
'url' => 'bar',
'version' => '1.0.0',
'developer' => 'Your Name, ©' . strftime('%Y'),
'description' => 'A custom module to add a page to the profile',
'category' => 'profiles'
);
return $_tmp;
}
/**
* init
*/
function apBar_init()
{
return true;
}
this is the item index page for the bar module.