%PDF- %PDF-
Direktori : /var/www/cwg/wp-content/plugins/wp-grid-builder/frontend/models/ |
Current File : //var/www/cwg/wp-content/plugins/wp-grid-builder/frontend/models/cards-interface.php |
<?php /** * Cards Interface * * @package WP Grid Builder * @author Loïc Blascos * @copyright 2019-2021 Loïc Blascos */ namespace WP_Grid_Builder\FrontEnd\Models; // Exit if accessed directly. if ( ! defined( 'ABSPATH' ) ) { exit; } interface Cards_Interface { /** * Query cards * * @since 1.0.0 * @access public */ public function query(); /** * Get cards * * @since 1.0.0 * @access public */ public function get(); }