Strategy.php 234 Bytes Raw Blame History Permalink 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 <?php namespace ACP\Editing; use ACP; interface Strategy { /** * @param int|object $object_id * * @return bool True when user can edit object. * @since 4.0 */ public function user_has_write_permission( $object_id ); }