Your IP : 10.10.0.253


Current Path : /var/www/libraries/smartslider3/src/Framework/Content/
Upload File :
Current File : /var/www/libraries/smartslider3/src/Framework/Content/AbstractPlatformContent.php

<?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);
}