Skip to content

martrix78/yii2-ethnicmedia-client

Repository files navigation

Ethnicmedia client

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

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published