Column
8 years ago
Form
8 years ago
Column.php
8 years ago
FormatCollectionInterface.php
8 years ago
FormatValueInterface.php
8 years ago
HeaderInterface.php
8 years ago
FormatCollectionInterface.php
18 lines
| 1 | <?php |
| 2 | |
| 3 | if ( ! defined( 'ABSPATH' ) ) { |
| 4 | exit; |
| 5 | } |
| 6 | |
| 7 | interface AC_Settings_FormatCollectionInterface { |
| 8 | |
| 9 | /** |
| 10 | * @param AC_Collection $collection |
| 11 | * @param mixed $original_value |
| 12 | * |
| 13 | * @return mixed |
| 14 | */ |
| 15 | public function format( AC_Collection $collection, $original_value ); |
| 16 | |
| 17 | } |
| 18 |