本文整理匯總了PHP中Kwc_Abstract::getSettings方法的典型用法代碼示例。如果您正苦於以下問題:PHP Kwc_Abstract::getSettings方法的具體用法?PHP Kwc_Abstract::getSettings怎麽用?PHP Kwc_Abstract::getSettings使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類Kwc_Abstract
的用法示例。
在下文中一共展示了Kwc_Abstract::getSettings方法的15個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。
示例1: getSettings
public static function getSettings($param = null)
{
$ret = parent::getSettings($param);
$ret['generators']['paragraphs'] = array('class' => 'Kwf_Component_Generator_Page_Static', 'component' => 'Kwc_Cc_Paragraphs_Master_Paragraphs_Component');
$ret['flags']['chainedType'] = 'Cc';
return $ret;
}
示例2: getSettings
public static function getSettings($param = null)
{
$ret = parent::getSettings($param);
$ret['generators']['test'] = array('class' => 'Kwf_Component_Generator_Page_Static', 'component' => 'Kwc_Lightbox_Content_TestComponent_Component');
$ret['viewCache'] = false;
return $ret;
}
示例3: getSettings
public static function getSettings($param = null)
{
$ret = parent::getSettings($param);
$ret['componentName'] = 'Foo';
$ret['ownModel'] = new Kwf_Model_FnF(array('primaryKey' => 'component_id'));
return $ret;
}
示例4: getSettings
public static function getSettings($param = null)
{
$ret = parent::getSettings($param);
$ret['viewCache'] = false;
$ret['componentName'] = trlKwfStatic('Order Products');
return $ret;
}
示例5: getSettings
public static function getSettings()
{
$ret = parent::getSettings();
$ret['generators']['composite'] = array('class' => 'Kwf_Component_Generator_Page_Static', 'component' => 'Kwc_Cc_Composite_Master_Composite_Component');
$ret['flags']['chainedType'] = 'Cc';
return $ret;
}
示例6: getSettings
public static function getSettings($param = null)
{
$ret = parent::getSettings($param);
$ret['ownModel'] = 'Kwf_Component_FieldModel';
$ret['componentName'] = trlKwfStatic('Rrd Graph');
return $ret;
}
示例7: getSettings
public static function getSettings()
{
$ret = parent::getSettings();
$ret['generators']['empty'] = array('class' => 'Kwf_Component_Generator_Static', 'component' => 'Kwc_Basic_None_Component');
$ret['childSettings']['empty'] = array('componentName' => 'test123');
return $ret;
}
示例8: getSettings
public static function getSettings()
{
$ret = parent::getSettings();
$ret['generators']['mail1'] = array('class' => 'Kwf_Component_Generator_Page_Static', 'component' => 'Kwc_Basic_TextMailTxt_Mail_Component', 'name' => 'mail1');
$ret['generators']['mail2'] = array('class' => 'Kwf_Component_Generator_Page_Static', 'component' => 'Kwc_Basic_TextMailTxt_Mail_Component', 'name' => 'mail2');
return $ret;
}
示例9: getSettings
public static function getSettings()
{
$ret = parent::getSettings();
$ret['generators']['box2'] = array('class' => 'Kwf_Component_Generator_Box_Static', 'component' => 'Kwc_Basic_None_Component', 'unique' => true, 'inherit' => true, 'priority' => 3, 'box' => 'box');
$ret['generators']['page3'] = array('class' => 'Kwf_Component_Generator_Page_Static', 'component' => 'Kwf_Component_Generator_Unique_Page3', 'name' => 'page3');
return $ret;
}
示例10: getSettings
public static function getSettings($param = null)
{
$ret = parent::getSettings($param);
$ret['generators']['months'] = array('class' => 'Kwc_Directories_YearMonth_Generator', 'component' => 'Kwc_Directories_YearMonth_Month_Directory_Component', 'showInMenu' => true);
$ret['dateColumn'] = null;
return $ret;
}
示例11: getSettings
public static function getSettings()
{
$ret = parent::getSettings();
$ret['ownModel'] = 'Kwf_Component_Cache_Box_IcRoot_InheritContent_Child_Model';
$ret['throwHasContentChangedOnRowColumnsUpdate'] = 'has_content';
return $ret;
}
示例12: getSettings
public static function getSettings()
{
$ret = parent::getSettings();
$ret['generators']['testMail1'] = array('class' => 'Kwf_Component_Generator_Static', 'component' => 'Kwc_Mail_FullPageCache_TestMail_Component');
$ret['generators']['testMail2'] = array('class' => 'Kwf_Component_Generator_Page_Static', 'component' => 'Kwc_Mail_FullPageCache_TestMail_Component');
return $ret;
}
示例13: getSettings
public static function getSettings()
{
$ret = parent::getSettings();
$ret['flags']['foo'] = true;
$ret['generators']['test'] = array('class' => 'Kwf_Component_Generator_Static', 'component' => 'Kwf_Component_Generator_Indirect_Flag2');
return $ret;
}
示例14: getSettings
public static function getSettings()
{
$ret = parent::getSettings();
$ret['viewCache'] = false;
$ret['componentName'] = trlKwfStatic('Message');
return $ret;
}
示例15: getSettings
public static function getSettings()
{
$ret = parent::getSettings();
$ret['cssClass'] = 'kwfup-webStandard kwfup-webListNone';
$ret['placeholder']['headline'] = trlKwfStatic('More about this Topic');
return $ret;
}