|
Source for file properties.php
Documentation is available at properties.php
* Module declaration code template.
* If your configuration is inherited from system hypermodule,
* prefix your property names with 'cp_' to avoid conflicts with
* @copyright Amiro.CMS. All rights reserved.
* @package Config_AmiClean_AmiSample
* @version $Id: properties.php 61273 2013-08-07 10:47:54Z Leontiev Anton $
if($oDeclarator->isRegistered('##modId##')){
$oMod = $oDeclarator->getModule('##modId##');
// Module order in admin control panel
$oMod->setProperty('taborder', $oDeclarator->getTabOrder('##modId##'));
* @see AmiClean_AmiSample_Meta
$oMod->setProperty('spec_blocks', array('spec_small_##modId##', 'spec_small_##modId##_custom'));
* Supported front request types
$oMod->setProperty('front_request_types', array('plain'));
* List of supported extension cunfigurations
$oMod->setProperty('supported_extensions', array('ami_ext/image'));
* Image extension creating images postfixes
$oMod->setProperty('stop_arg_names', array('id' => '##modId##'));
* Flag specifying using sublinks on front side
$oMod->setProperty('stop_use_sublinks', TRUE);
|