martrix / yii2-ethnicmedia-client
Ethnicmedia client
Installs: 6
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 2
Forks: 0
Open Issues: 0
Type:yii2-extension
Requires
- yiisoft/yii2: *
This package is not auto-updated.
Last update: 2025-01-04 19:12:11 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
-
Add to params.php 'EM_apiKey' => API KEY,
-
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]); ?>