이 플러그인은 최근 3개의 주요 워드프레스 출시와 시험 되지 않았습니다. 워드프레스의 좀 더 최근 버전으로 이용할 때 더 이상 관리되지 않고 지원되지 않고 호환성 문제가 있을 수 있습니다.

DbTable to DataTable

설명

This plugin allows you to display the content of MySql tables into sortable html tables thanks to the DataTable jQuery Plugin.

You don’t need any configuration and once installed, it is ready to use.

Simply add the shortcode [dbtable] into an article or a page and you will have a nice and clean table.

예제:

All parameters that contain more than one value have to be separated by commas without spaces.

Minimum needed : [dbtable from=MysqlTableName]

  • select=field1,field2,field3 will display all rows of the table and only specified fields
  • except=field1,field2,field3 will display all rows of the table except specified fields
  • cssClass=class1,class2 will add class1 and class2 to the class attribut of the table
  • comments=true|(false) true will use comments specified in each field of the MySql table as datatable column names. If true and if a comment is missing, the plugin fallback on field name only for the one missing, not for the entire table.
  • pagination=true|(false) will show/hide the bottom pagination links. If false, make sure you have the limit parameter large enough to display all your datas
  • limit=25 Display 25 rows by default.

설치

워드프레스 알림판에서

  • ‘플러그인 > 새로 추가’ 방문
  • Search for ‘DbTable to DataTable’
  • Activate DbTable to DataTable from your Plugins page.
  • That’s it!

WordPress.org에서

  • Download DbTable to DataTable.
  • Upload the ‘DbTable2DataTable’ directory to your ‘/wp-content/plugins/’ directory, using your favorite method (ftp, sftp, scp, etc…)
  • Activate ‘DbTable to DataTable’ from your Plugins page.
  • That’s it !

FAQ

How do I change default values?

You can edit the main dbTable2dataTable.php file and change these values :

    $this->defaults = array(
          'from'        => null,     // Mysql source table
          'select'      => null,     // Select specific columns
          'except'      => null,     // Ignore specific columns
          'cssclass'    => null,     // Specify custom CSS class for the <table>
          'comments'    => false,    // Use field comments instead of column name
          'pagination'  => false,    // Enable / Disable pagination
          'limit'       => 25,       // Limit of results per page
          'width'       => '100',    // Set width in % of the table
          'language'    => 'English' // Default language : French
        );
What the `comments` attribut does?

By default, column names will be the field name (e.g: product_id, custom_field). But if you want to have custom/pretty names you should modify your table and add comments to the fields (e.g : ALTER TABLE product CHANGE product_id product_id INT( 11 ) COMMENT 'Product ID'

Why can’t I display datas from a WordPress Table ?

This plugin is not intended to display WordPress datas. I blocked this for security reasons. It aims to give you the ability to show custom datas from custom tables. I had to extract informations from an ERP and display them.

How can I force the plugin to shows WP tables ?

You can remove the security check line 58 by deleting or substr($atts['from'], 0,strlen($wpdb->prefix)) === $wpdb->prefix

Why the language doesn’t change?

You probably misstyped the language name. Make sure you write it exactly with the correct name.
Refer to : https://www.datatables.net/plug-ins/i18n/

E.g for french : //cdn.datatables.net/plug-ins/1.10.10/i18n/French.json , the parameter will be French with the first letter in uppercase.

후기

2016년 9월 3일
Simple and effective, do the job.
모든 4 평가 읽기

기여자 & 개발자

“DbTable to DataTable”(은)는 오픈 소스 소프트웨어입니다. 다음의 사람들이 이 플러그인에 기여하였습니다.

기여자

자국어로 “DbTable to DataTable”(을)를 번역하세요.

개발에 관심이 있으십니까?

코드 탐색하기는, SVN 저장소를 확인하시거나, 개발 기록RSS로 구독하세요.

변경이력

0.1

  • First version