本文整理汇总了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;
}