To return to the index page, click here.
Orbis CMS is very flexible in the sense that it requires nearly no adjustments to existing websites to be able to integrate. The main concept of the CMS is to allow you as web designer/developer to finish a client's site completely and then easily make content editable. There are not many requirements for a website to be integrated successfully with Orbis CMS. You'll have to, however, pay attention to the following:
Because Orbis uses PHP to fetch data from the database, pages (files) with editable content need to be PHP. In normal circumstances, this means that your files should have a .php extension. If you're unable/unwilling to change your files's extensions, read this article on how you can configure your server to parse any files (e.g. files with .html extensions) as PHP.
As mentioned in the previous section, it's best to finish your website before integrating Orbis CMS with it. After you've made sure that your files are ready to be parsed as PHP (refer to 3.1 Introduction to development with Orbis), you can follow the steps below to make content editable:
orbis.php) in each file you want to have editable content. The best way to do this is to start your files with this code:
<?php require('orbis.php'); ?>
<!DOCTYPE html ...
<?php echo orbis_data('[Page]', '[Section]'); ?>
Be sure to replace [Page] and [Section] with the page and name of the section you defined in the CMS. All attributes are case-sensitive.There are a few guidelines for successful web design with Orbis CMS. Follow these guidelines to get the most out of the CMS:
<p> before and </p> after the code specified above, as WYMeditor will automatically wrap content edited by the user in appropriate tags.