Create New Item
Item Type
File
Folder
Item Name
Search file in folder and subfolders...
Are you sure want to rename?
File Manager
/
wp-content
/
plugins
/
the-events-calendar
/
common
/
src
/
Tribe
/
Repository
:
Formatter_Interface.php
Advanced Search
Upload
New Item
Settings
Back
Back Up
Advanced Editor
Save
<?php /** * Interface Tribe__Repository__Formatter_Interface * * This interface is usually implemented by repository decorators that * need not only to modify the filtering criteria but the return format * of the items as well. * * @since 4.7.19 */ interface Tribe__Repository__Formatter_Interface { /** * Formats an item handled by a repository to the expected * format. * * @since 4.7.19 * * @param int|WP_Post $id * * @return mixed */ public function format_item( $id ); }