https://github.com/PressForward/pressforward
Raw File
Tip revision: a8040df522e82799517b8383cb8a721fed436d0c authored by Aram Zucker-Scharff on 28 September 2016, 13:27:48 UTC
Testing a more php5.5 friendly fix
Tip revision: a8040df
SystemMeta.php
<?php
namespace PressForward\Interfaces;
interface SystemMeta
{
    public function add_meta($post_id, $meta_key, $meta_value, $unique);
    public function update_meta($post_id, $meta_key, $meta_value, $prev_value);
	public function delete_meta($post_id, $meta_key, $meta_value);
	public function get_meta( $post_id, $key = '', $single = false );
}
back to top