martrix/yii2-ethnicmedia-client

Ethnicmedia client

dev-master 2015-09-10 13:06 UTC

This package is not auto-updated.

Last update: 2024-09-14 17:42:58 UTC


README

Ethnicmedia client

Installation

The preferred way to install this extension is through composer.

Either run

php composer.phar require --prefer-dist martrix/yii2-ethnicmedia-client "*"

or add

"martrix/yii2-ethnicmedia-client": "*"

to the require section of your composer.json file.

Usage

  1. Add to params.php 'EM_apiKey' => API KEY,

  2. Add to SiteController.php

	public function actions(){
		return array(
		'emclient' => array(
			'class'    => '\martrix\ethnicmediaClient\EmclientAction',
			'debug'    => true,
			'lang'     => 'en',
			'adsLimit' => 20,

		  ),
		);
	}

	public function actionClassifield(){
		$categoryId=Yii::$app->request->get('categoryId');
		$page=Yii::$app->request->get('page');
		return $this->render('ad',['categoryId'=>$categoryId,'page'=>$page]);
	}

example of use on template (ad.php):

<?php echo \martrix\ethnicmediaClient\Emformwidget::widget(['adId'=>5]); ?>





<?php echo \martrix\ethnicmediaClient\Emadsdisplaywidget::widget(['categoryId'=>$categoryId,'page'=>$page]); ?>