-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fixed some issues caused by migration.
- Loading branch information
Showing
4 changed files
with
70 additions
and
26 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,15 @@ | ||
<?php | ||
|
||
/* | ||
* To change this license header, choose License Headers in Project Properties. | ||
* To change this template file, choose Tools | Templates | ||
* and open the template in the editor. | ||
*/ | ||
|
||
/** | ||
* Page "Tables". | ||
* | ||
* @author Ondrej Donek, <[email protected]> | ||
* @since 1.0.1 | ||
* @todo Get plugin's option `display_detail_description`! | ||
*/ | ||
$display_description = ( ( bool ) WP_Style_Guide::get_option( 'display_detail_description' ) === true ) ? true : false; | ||
$display_description = true; | ||
|
||
?><div class="wrap"> | ||
|
||
|
@@ -19,7 +23,7 @@ $display_description = ( ( bool ) WP_Style_Guide::get_option( 'display_detail_de | |
<!-- | ||
<div class="wp-pattern-example"> | ||
<p><?php printf( | ||
__( 'If you want list some data in your plugin you need to implement new class that extends <a href="%1$s" target="blank"><code>WP_List_Table</code></a>. It is not complicated task and we show it here using simple wizard that generates all neccessary code.', WP_Style_Guide::PLUGIN_SLUG ), | ||
'If you want list some data in your plugin you need to implement new class that extends <a href="%1$s" target="blank"><code>WP_List_Table</code></a>. It is not complicated task and we show it here using simple wizard that generates all neccessary code.', | ||
'' | ||
); ?></p> | ||
</div> | ||
|