File "AbstractPlatformContent.php"
Full Path: /home2/sdektunc/cepali.edu.mx/wp-content/plugins/smart-slider-3/Nextend/Framework/Content/AbstractPlatformContent.php
File size: 633 bytes
MIME-type: text/x-php
Charset: utf-8
<?php
namespace Nextend\Framework\Content;
abstract class AbstractPlatformContent {
/**
* @param $keyword
*
* @return array links
* $links[] = array(
* 'title' => '',
* 'link' => '',
* 'info' => ''
* );
*/
abstract public function searchLink($keyword);
/**
* @param $keyword
*
* @return array links
* $links[] = array(
* 'title' => '',
* 'description' => '',
* 'image' => '',
* 'link' => '',
* 'info' => ''
* );
*/
abstract public function searchContent($keyword);
}