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


PHP CPAC_Column類代碼示例

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


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

示例1: init

 /**
  * @see CPAC_Column::init()
  * @since 2.2.1
  */
 public function init()
 {
     parent::init();
     // Properties
     $this->properties['type'] = 'column-file_size';
     $this->properties['label'] = __('File size', 'codepress-admin-columns');
 }
開發者ID:xeiter,項目名稱:timeplannr,代碼行數:11,代碼來源:file-size.php

示例2: init

 /**
  * @see CPAC_Column::init()
  * @since 2.2.1
  */
 public function init()
 {
     parent::init();
     // Properties
     $this->properties['type'] = 'column-user_commentcount';
     $this->properties['label'] = __('Comment Count');
 }
開發者ID:OneTimeUser,項目名稱:retailwire,代碼行數:11,代碼來源:comment-count.php

示例3: init

 /**
  * @see CPAC_Column::init()
  * @since 2.3.3
  */
 public function init()
 {
     parent::init();
     $this->properties['type'] = 'column-estimated_reading_time';
     $this->properties['label'] = __('Estimated Reading Time', 'codepress-admin-columns');
     $this->options['words_per_minute'] = 200;
 }
開發者ID:xeiter,項目名稱:timeplannr,代碼行數:11,代碼來源:estimated-reading-time.php

示例4: init

 /**
  * @see CPAC_Column::init()
  * @since 2.2.1
  */
 public function init()
 {
     parent::init();
     $this->properties['type'] = 'column-parent';
     $this->properties['label'] = __('Parent', 'codepress-admin-columns');
     $this->properties['object_property'] = 'post_parent';
 }
開發者ID:coreymargulis,項目名稱:karenmargulis,代碼行數:11,代碼來源:parent.php

示例5: init

 /**
  * @see CPAC_Column::init()
  * @since 2.3.4
  */
 public function init()
 {
     parent::init();
     // Properties
     $this->properties['type'] = 'column-shortcode';
     $this->properties['label'] = __('Shortcodes', 'codepress-admin-columns');
 }
開發者ID:coreymargulis,項目名稱:karenmargulis,代碼行數:11,代碼來源:shortcodes.php

示例6: init

 /**
  * @see CPAC_Column::init()
  * @since 2.2.4
  */
 public function init()
 {
     parent::init();
     // Properties
     $this->properties['type'] = 'column-title_raw';
     $this->properties['label'] = __('Title without actions', 'codepress-admin-columns');
 }
開發者ID:xeiter,項目名稱:timeplannr,代碼行數:11,代碼來源:title-raw.php

示例7: init

 /**
  * @see CPAC_Column::init()
  * @since 2.2.1
  */
 public function init()
 {
     parent::init();
     $this->properties['type'] = 'column-user_description';
     $this->properties['label'] = __('Description', 'codepress-admin-columns');
     $this->options['excerpt_length'] = 30;
 }
開發者ID:Gerdie,項目名稱:dreamy-wedding-company,代碼行數:11,代碼來源:description.php

示例8: init

 public function init()
 {
     parent::init();
     $this->properties['type'] = 'column-modified';
     $this->properties['label'] = __('Last modified', 'codepress-admin-columns');
     $this->options['date_format'] = '';
 }
開發者ID:xeiter,項目名稱:timeplannr,代碼行數:7,代碼來源:modified.php


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