|
All content with label api.
Related Labels:
coding, developer, classes, rest, mambo46, parameters, formats, methods, database, schema
Enabling or Disabling a Users RESTful API Access
(Development)
enable or disable the REST API for the entire site simply disable the service in the RESTful API Manager. It is disabled by default. To enable or disabled access for a specific developer you can either remove their account completely or just block their account ...
Other labels:
rest
|
RESTful API Registration
(Development)
API Registration Before a Mambo site's RESTful API can be utilized the developer must register for an API account. There is a simple module called "modrest" that when published makes finding the registration form a snap. Screenshot: modrest !modrest.png ...
Other labels:
rest
|
Interacting with the RESTful API
(Development)
RESTful API Parameters, Explanations, and Formats Parameter Value Description appid string (required) The application ID. See the wiki page on RESTful API registration for more information. \\ query string A query can be passed as an additional filter to isolate ...
Other labels:
rest, parameters, formats
|
Database Schema of Mambo 4.6 Lite
(Development)
mambolite.jpg align=center
Other labels:
database, schema, mambo46
|
Helper Classes
(Development)
Class mosHtmlHelper \ a helper class for rendering Mambo head tags. Can also be used to render certain html tags
Other labels:
classes
|
Class mosHtmlHelper code
(Development)
tags var $tags = array( 'title' => '<title>%s</title>', 'meta' => '<meta name="%s" content="%s" />', 'metalink' => '<link href="%s" title="%s"%s />', 'metalinkrel' => '<link rel="%s" href="%s" />', 'charset' => '<meta httpequiv="ContentType" content="text/html; charset=%s" />', 'css' => '<link href ...
Other labels:
coding, developer, classes
|
Class mosHtmlHelper methods
(Development)
Getting and setting values getInstance() This is the singleton accessor. It should always be called as &getInstance(). The first time it's called, it initializes the DTD, character set (from the core language object), and loads any head tags stored in the mainframe object.Parameters:noneReturns:pointer ...
Other labels:
coding, developer, classes, methods
|
Class mosHtmlHelper
(Development)
Note: this class is currently under development and subject to change. Class Notes Class mosHtmlHelper started life as a way to control the document DTD and as a replacement for mosShowHead but it evolved into much more. It also contains methods for outputting common html head tags ...
Other labels:
coding, developer, classes
|
setPageTitle
(Development)
function alters the page title using the input parameter. Use it whenever you need to change the page title from within a component or module. Note: Appends to $mosConfigsitename in version <=4.5.4 Prepends to $mosConfigsitename in version >= 4.6.0 Usage void setPageTitle ...
Other labels:
coding, developer
|
addCustomHeadTag
(Development)
function emits a custom head tag using the input parameter. Use it whenever you need to add a head tag from within a component or module. A typical example would be to add a css link or style block. Usage addCustomHeadTag(string ...
Other labels:
coding, developer
|
|
|