Module File Headers

< 1 min read

Each module in RevTec CRM consist of init file which contains the general module configuration and includes headers containing meta-information regarding the module.

Module init file headers example
#

The follow example is taken from the default RevTec CRM module Menu Setup that comes with the installation.

<.?php
defined('BASEPATH') or exit('No direct script access allowed');/*
Module Name: Menu Setup
Description: Default module to apply changes to the menus
Version: 2.3.0
Requires at least: 2.3.*
*/

Available Headers
#

You can find below the list of available headers that can be added to module init file.

  • Module Namerequired
  • Module URI – module URL
  • Version – the version of the module
  • Descriptionthe description of the module, you can explain what does the module do.
  • Author – module author name
  • Author URI – module author URL
  • Requires at least – what version of RevTec CRM the module requires at least
Updated on 2024-11-23
Was it helpful ?