Server :
Apache
System :
Linux webd003.cluster126.gra.hosting.ovh.net 5.15.206-ovh-vps-grsec-zfs-classid #1 SMP Fri May 15 02:41:25 UTC 2026 x86_64
User :
atwiofrxug (73666)
PHP Version :
8.4.10
Disable Functions :
_dyuweyrj4,_dyuweyrj4r,dl
Current Directory :
/home/atwiofrxug/mylittletelaviv/wp-content/plugins/popup-maker/classes/Interface/
Directory Status:
Writeable | Document Root:
Writeable
Upload File
Viewing: /home/atwiofrxug/mylittletelaviv/wp-content/plugins/popup-maker/classes/Interface/Repository.php
<?php
/*******************************************************************************
* Copyright (c) 2018, WP Popup Maker
******************************************************************************/
if ( ! defined( 'ABSPATH' ) ) {
exit;
}
/**
* Interface PUM_Interface_Repository
*
* Interface between WP_Query and our data needs. Essentially a query factory.
*
* @package ForumWP\Interfaces
*/
interface PUM_Interface_Repository {
/**
* @param int $id
*
* @return WP_Post|PUM_Abstract_Model_Post
*/
public function get_item( $id );
/**
* @param int $id
*
* @return bool
*/
public function has_item( $id );
/**
* @param $args
*
* @return WP_Post[||PUM_Abstract_Model_Post[]
*/
public function get_items( $args );
/**
* @param array $data
*
* @return WP_Post|PUM_Abstract_Model_Post
*/
public function create_item( $data );
/**
* @param int $id
* @param array $data
*
* @return WP_Post|PUM_Abstract_Model_Post
*/
public function update_item( $id, $data );
/**
* @param int $id
*
* @return bool
*/
public function delete_item( $id );
}
Cyb3r Drag0nz Team • Google Edition