Yii2-telex demo
Showing 1-3 of 3 items.
| Id | Class | Content | |
|---|---|---|---|
| m1 | msg-lightgreen | <strong>Yii2-telex</strong> is a scrolling news ticker widget | |
| m2 | msg-amber | It can be used in any Yii2 View | |
| m3 | msg-teal | Try the options below |
Give Telex some time to process changes in the messages.
Yii2-telex is a widget for the Yii 2.0 PHP Framework. It continuously displays breaking news, traffic information, stock quotes, and the like. Yii2-telex renders my Javascript widget Telex.
It is free software, distributed under the MIT License.
Use it in your View like this:
Code
<?php
use sjaakp\telex\Telex;
$messages = [
[
'id' => 'm1',
'class' => 'msg-lightgreen',
'content' => 'Yii-telex is a scrolling news ticker widget'
],
[
'id' => 'm2',
// ...
],
// ... more messages ...
];
$dataProvider = new ArrayDataProvider([
'allModels' => $messages,
]);
?>
...
<?= Telex::widget([
'dataProvider' => $dataProvider,
]) ?>
...