Comment
8 years ago
Link
8 years ago
Media
8 years ago
Post
8 years ago
User
8 years ago
Actions.php
8 years ago
AjaxValue.php
8 years ago
CustomField.php
8 years ago
Menu.php
8 years ago
Meta.php
8 years ago
Placeholder.php
8 years ago
RelationInterface.php
8 years ago
Taxonomy.php
8 years ago
WooCommercePlaceholder.php
8 years ago
WooCommercePlaceholder.php
17 lines
| 1 | <?php |
| 2 | |
| 3 | if ( ! defined( 'ABSPATH' ) ) { |
| 4 | exit; |
| 5 | } |
| 6 | |
| 7 | /** |
| 8 | * @since 2.4.7 |
| 9 | */ |
| 10 | class AC_Column_WooCommercePlaceholder extends AC_Column_Placeholder { |
| 11 | |
| 12 | public function is_valid() { |
| 13 | return in_array( $this->get_post_type(), array( 'product', 'shop_order', 'shop_coupon' ) ); |
| 14 | } |
| 15 | |
| 16 | } |
| 17 |