Skip to content

Latest commit

 

History

History
 
 

Frameworks

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 
 
 
 
 
XOOPS Frameworks

For common frameworks shared by XOOPS modules.

A framework could be adopted into XOOPS core once it is proven.

The structure:
{XOOPS_ROOT_PATH}/Frameworks/myframework/xoopsmyframework.php

Content of myframework.php:
<?php

class XoopsMyframework
{
    function __construct()
    {
    }
    ...
}

?>