當前位置: 首頁>>代碼示例>>PHP>>正文


PHP trlKwfStatic函數代碼示例

本文整理匯總了PHP中trlKwfStatic函數的典型用法代碼示例。如果您正苦於以下問題:PHP trlKwfStatic函數的具體用法?PHP trlKwfStatic怎麽用?PHP trlKwfStatic使用的例子?那麽, 這裏精選的函數代碼示例或許可以為您提供幫助。


在下文中一共展示了trlKwfStatic函數的15個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。

示例1: getSettings

 public static function getSettings($param = null)
 {
     $ret = parent::getSettings($param);
     $ret['ownModel'] = 'Kwc_Abstract_Image_Model';
     $ret['dimensions'] = array('default' => array('width' => 300, 'height' => 200, 'cover' => false), 'fullWidth' => array('text' => trlKwfStatic('full width'), 'width' => Kwf_Form_Field_Image_UploadField::CONTENT_WIDTH, 'height' => 0, 'cover' => true), 'original' => array('text' => trlKwfStatic('original')), 'custom' => array('text' => trlKwfStatic('user-defined'), 'width' => Kwf_Form_Field_Image_UploadField::USER_SELECT, 'height' => Kwf_Form_Field_Image_UploadField::USER_SELECT, 'cover' => true));
     $ret['imageLabel'] = trlKwfStatic('Image');
     $ret['maxResolution'] = null;
     $ret['pdfMaxWidth'] = 0;
     $ret['pdfMaxDpi'] = 150;
     $ret['editFilename'] = true;
     $ret['imageCaption'] = false;
     $ret['altText'] = true;
     $ret['titleText'] = true;
     $ret['allowBlank'] = true;
     $ret['showHelpText'] = false;
     $ret['useDataUrl'] = false;
     $ret['lazyLoadOutOfViewport'] = true;
     // Set to false to load image also when not in view
     $ret['loadedAnimationClass'] = 'webImageLoadedAnimation';
     $ret['imgCssClass'] = '';
     $ret['flags']['hasFulltext'] = true;
     $ret['assetsAdmin']['dep'][] = 'KwfImageUpload';
     $ret['throwHasContentChangedOnRowColumnsUpdate'] = 'kwf_upload_id';
     $ret['outputImgTag'] = true;
     $ret['defineWidth'] = false;
     $ret['maxWidthImageWidth'] = true;
     $ret['inlineTags'] = false;
     $ret['imageCompressionQuality'] = 80;
     return $ret;
 }
開發者ID:koala-framework,項目名稱:koala-framework,代碼行數:30,代碼來源:Component.php

示例2: getSettings

 public static function getSettings()
 {
     $ret = parent::getSettings();
     $ret['placeholder']['success'] = trlKwfStatic('Comment was successfully deleted.');
     $ret['flags']['processInput'] = true;
     return $ret;
 }
開發者ID:xiaoguizhidao,項目名稱:koala-framework,代碼行數:7,代碼來源:Component.php

示例3: getSettings

 public static function getSettings()
 {
     $ret = parent::getSettings();
     $ret['dimensions'] = array('default' => array('text' => trlKwfStatic('default'), 'width' => 16, 'height' => 16, 'cover' => false));
     $ret['componentName'] = trlcKwfStatic('Flag of a Country', 'Flag');
     return $ret;
 }
開發者ID:xiaoguizhidao,項目名稱:koala-framework,代碼行數:7,代碼來源:Component.php

示例4: getSettings

 public static function getSettings()
 {
     $ret = parent::getSettings();
     $ret['componentName'] = trlKwfStatic('Form.Select');
     $ret['ownModel'] = 'Kwc_Form_Field_Select_Model';
     return $ret;
 }
開發者ID:xiaoguizhidao,項目名稱:koala-framework,代碼行數:7,代碼來源:Component.php

示例5: getSettings

 public static function getSettings()
 {
     $ret = parent::getSettings();
     $ret['componentName'] = trlKwfStatic('Dogears');
     $ret['generators']['child']['component'] = 'Kwc_Box_DogearRandom_Dogear_Component';
     return $ret;
 }
開發者ID:xiaoguizhidao,項目名稱:koala-framework,代碼行數:7,代碼來源:Component.php

示例6: getSettings

 public static function getSettings($param = null)
 {
     $ret = parent::getSettings($param);
     $ret['viewCache'] = false;
     $ret['componentName'] = trlKwfStatic('Order Products');
     return $ret;
 }
開發者ID:koala-framework,項目名稱:koala-framework,代碼行數:7,代碼來源:Component.php

示例7: getSettings

 public static function getSettings()
 {
     $ret = parent::getSettings();
     $ret['orderProductData'] = 'Kwc_Shop_AddToCart_OrderProductData';
     $ret['productTypeText'] = trlKwfStatic('Product');
     return $ret;
 }
開發者ID:xiaoguizhidao,項目名稱:koala-framework,代碼行數:7,代碼來源:Component.php

示例8: getSettings

 public static function getSettings()
 {
     $ret = parent::getSettings();
     $ret['cssClass'] = 'kwfup-webStandard kwfup-webListNone';
     $ret['placeholder']['headline'] = trlKwfStatic('More about this Topic');
     return $ret;
 }
開發者ID:nsams,項目名稱:koala-framework,代碼行數:7,代碼來源:Component.php

示例9: getSettings

 public static function getSettings($param = null)
 {
     $ret = parent::getSettings($param);
     $ret['ownModel'] = 'Kwf_Component_FieldModel';
     $ret['componentName'] = trlKwfStatic('Rrd Graph');
     return $ret;
 }
開發者ID:koala-framework,項目名稱:koala-framework,代碼行數:7,代碼來源:Component.php

示例10: getSettings

 public static function getSettings($param = null)
 {
     $ret = parent::getSettings($param);
     $ret['componentName'] = trlKwfStatic('Carousel');
     $ret['dimensions'] = array('fullWidth' => array('text' => trlKwfStatic('full width'), 'width' => self::CONTENT_WIDTH, 'height' => 337, 'cover' => true));
     return $ret;
 }
開發者ID:koala-framework,項目名稱:koala-framework,代碼行數:7,代碼來源:Component.php

示例11: __construct

 public function __construct($field_name = null, $field_label = null)
 {
     parent::__construct($field_name, $field_label);
     $this->setEditable(false);
     $this->setTriggerAction('all');
     $this->setEmptyMessage(trlKwfStatic('Please select a value'));
 }
開發者ID:nsams,項目名稱:koala-framework,代碼行數:7,代碼來源:Select.php

示例12: getSettings

 public static function getSettings()
 {
     $ret = parent::getSettings();
     $ret['placeholder']['success'] = trlKwfStatic('The entry in your guestbook has been acitvated.');
     $ret['placeholder']['toGuestbook'] = trlKwfStatic('Use this link to get to your guestbook:');
     return $ret;
 }
開發者ID:xiaoguizhidao,項目名稱:koala-framework,代碼行數:7,代碼來源:Component.php

示例13: getSettings

 public static function getSettings($param = null)
 {
     $ret = parent::getSettings($param);
     $ret['componentName'] = trlKwfStatic('Preview image');
     $ret['dimensions'] = array('default' => array('width' => self::CONTENT_WIDTH, 'height' => 0, 'cover' => true));
     return $ret;
 }
開發者ID:koala-framework,項目名稱:koala-framework,代碼行數:7,代碼來源:Component.php

示例14: getSettings

 public static function getSettings()
 {
     $ret = parent::getSettings();
     $ret['placeholder']['submitButton'] = trlKwfStatic('Set new Password');
     $ret['generators']['child']['component']['success'] = 'Kwc_User_LostPassword_SetPassword_Form_Success_Component';
     return $ret;
 }
開發者ID:xiaoguizhidao,項目名稱:koala-framework,代碼行數:7,代碼來源:Component.php

示例15: getSettings

 public static function getSettings($param = null)
 {
     $ret = parent::getSettings($param);
     $ret['componentName'] = trlKwfStatic('Favicon');
     $ret['dimensions'] = array(array('width' => 0, 'height' => 0, 'cover' => true));
     return $ret;
 }
開發者ID:koala-framework,項目名稱:koala-framework,代碼行數:7,代碼來源:Component.php


注:本文中的trlKwfStatic函數示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。