ocPortal Tutorial: The ocPortal programming framework
Written by Chris Graham, ocProducts
|
ocPortal has a well documented API (code) |
It should be noted that ocPortal can be heavily customised without any programming, via editing the templates, but this will mostly only adjust layout and appearance, rather than adding-to or modifying ocPortal behaviour.
It is also important to note, that programming tasks are inherently technical, and requires some combination of some of these elements:
- education
- experience
- a technical mind
|
ocPortal has a well documented API (dev-guide generated from code) |
Table of contents
Open source
ocPortal is open source (it meets the Open Source Definition). It is not 'free software', as it is commercially developed for retail, with certain actions prohibited unless a registration is purchased, and it is not generally re-distributable in modified form.This means that it is a lot easier to customise ocPortal as opposed to a system you might buy from a company such as Microsoft or even IBM.
The ocPortal API
Every function in ocPortal is documented using a system based on phpdoc (itself based on 'javadoc'). One purpose in this documentation is that it makes it easy for a programmer to program for ocPortal: they have a few hundred fully documented ocPortal functions available to them.With phpdoc and the function header-line itself, every function has the following:
- A description
- A list of all parameters
- The code-name of the parameter
- The type of the parameter (including whether false [~type] or NULL [?type] values are accepted)
- A description of the parameter
- Whether the parameter is optional
- The return type (if any), and a description of it
All this information is presented as a part of the dev-guide, which is built dynamically from the ocPortal install that the source code is running of, via the ocPortal main_code_documentor block. The dev-guide also includes a lot of additional information about programming for ocPortal, and is one of the actual sources of information for ocProducts staff; it includes a lot of important and expert information, including guidelines for writing secure code.
Extending ocPortal
ocPortal is not just a lump of code like most software: a lot of effort has gone into structuring the system so that code may be cleanly hooked in, via various ways.These ways include:
- Overriding of existing source files with modified versions. Every directory that holds effective source code (as opposed to the shell files such as index.php or dload.php that just provide entry points into ocPortal) support a system of overriding: in other words, every ocPortal source code file can be replaced with a customised version, cleanly, without damaging the existing code and without the changes getting buried. This is done via elevation of a file to a _custom suffixed directory of where the file originally was.
- An ocPortal editor (the code editor) is provided to provide a simple (password protected) editor for your site, and does this automatically.
- New
A block file is missing: Module (sources/blocks/Module.php or an overridden equivalent to this path)
s can be added just by writing a file and placing it in the modules_custom directory for the zone that it is to run in. In addition, there is support for a simple form of module, called a Mini-module that can be added in a similar way, but is much easier to write for amateur programmers.- New Block s can be added just by writing a file and placing it in the sources_custom/blocks directory. In addition, there is support for a simple form of module, called a 'mini-block' that can be added in a similar way, but is much easier to write for amateur programmers.
- New API source code files can be added just by writing a file and placing it into the sources_custom directory.
- 'Hooks' to add features into a hooked area can be written. For example, a 'search hook' can be written by writing a file and placing it into the sources_custom/hooks/modules/search directory.
An example of a new module
|
ocPortal templates for the tester mod |
|
ocPortal language files for the tester mod |
The process of writing the module went along these basic steps:
- The functionality of the module was decided upon, and tests designed that would allow us to test all this functionality worked once the module was finished (we usually define tests first, write a module in one go, and then carry out all the tests: it usually is the most efficient and robust way for us to write the code).
- The database schema was designed for the module, by consideration and then simply listing of the tables and fields that would be needed to adequately (and consistently with our standards and the guidance of our expertise)
- The shell for the main module was written, based on that which all other modules (other than minimodules and abstracted AED modules) uses.
- It was decided what screens that module would use, and these were all assigned code-names. Functions were created for these code-names, and the run function was filled in to call them up according to the 'type' parameter (as featured in all other modules).
- Install and uninstall functions were written for the module, according to the database schema.
- Add, edit, and delete backend functions were written for the data of the module.
- Add, edit, and delete screens were written for the data of the module (including definition of associated language strings for the standard ocPortal field inputting interface [wherever possible, referencing existing ones, to reduce the burden for anyone wishing to translating the module once we release it publicly as an ocPortal modification]).
- The screens for the main interface were written.
- The module was tested, and then deployed.
|
ocPortal module for the tester mod |
Some of the API functions used in the module include:
- create_table
- add_specific_permission
- add_config_option
- query_select
- do_template
- do_lang
- has_specific_permission
- build_url
- assign_refresh
- get_param_integer
- get_member
- member_group_query
Addons
|
Exporting an addon (1) |
|
Exporting an addon (2) |
We used to use the term 'mod' to refer to an addon, but since version 3 we have not.
|
Importing an addon (2) |
|
Importing an addon (1) |
Since version 3 of ocPortal, overridden PHP files may override on a per-function/per-class level. In other words, if you overrode a PHP file then you could make your sources_custom file such that the only functions/classes it contains are the ones that you changed.
The Code Editor
|
A password is obviously needed to use the code editor |
|
Choosing a code file to edit |
|
Using the code editor |
ocPortal provides a very simple code editor for editing of existing ocPortal code files, or creation of new files. The code editor has inbuilt, automated, support for the ocPortal file override system: editing an original ocPortal file will save the edited version in the equivalent '_custom' suffixed directory where possible.
The code editor is very useful for making adhoc changes to a live-site, but is not intended as a full development environment.
PHP programming help
|
PHP has an excellent reference manual |
The ocPortal dev-guide does actually include a PHP reference that defines a subset of PHP that we allow ourselves to use in ocPortal. The subset is specially limited so as to avoid PHP version conflicts, and the need for PHP extensions that may not be installed.
Other advantages to our framework
If you still are not convinced that ocPortal is the right choice for you, consider some of these:- There are many frameworks for creating web applications available (such as Typo3 or Ruby-On-Rails), but few true frameworks like ocPortal are also 'out of the box' systems.
- In addition to the above, few pure frameworks provide the breadth of functionality that ocPortal can provide.
- ocPortal's framework has excellent security. For example,
- the database abstraction system allows relational databases to be accessed without concern of SQL-injection.
- The template system is written to make XSS injection virtually impossible (where the vast majority of programmers write code that is full of XSS vulnerabilities, without even knowing what they are)
- ocPortal's framework is of professional quality, managed by a single company that keeps every aspect of it to high standards, and compatible with each other. If you opt for frameworks which are incomplete, and end up using add-on libraries to achieve additional functionality, you will soon realise, both immediately and after-time, that the lack of central control results in:
- major compatibility problems
- messy feature overlap
- inconsistent philosophies for code
- inconsistent philosophies for documentation
- a large number of agents to contact for different kinds of problem
- no central authority for you to agree licensing with, should you need to do so (and this is not unlikely, as many projects flower to unexpected ends)
- orphaned projects that die



