modules/videopress-v2/class.videopress-video.php 1 location
|
@@ 208-211 (lines=4) @@
|
| 205 |
|
if ( isset( $data->description ) && $data->description !== '' ) |
| 206 |
|
$this->description = trim( $data->description ); |
| 207 |
|
|
| 208 |
|
if ( isset( $data->text_direction ) && $data->text_direction === 'rtl' ) |
| 209 |
|
$this->text_direction = 'rtl'; |
| 210 |
|
else |
| 211 |
|
$this->text_direction = 'ltr'; |
| 212 |
|
|
| 213 |
|
if ( isset( $data->language ) ) |
| 214 |
|
$this->language = $data->language; |
modules/videopress/class.videopress-video.php 1 location
|
@@ 197-200 (lines=4) @@
|
| 194 |
|
if ( isset( $data->title ) && $data->title !== '' ) |
| 195 |
|
$this->title = trim( str_replace( ' ', ' ', $data->title ) ); |
| 196 |
|
|
| 197 |
|
if ( isset( $data->text_direction ) && $data->text_direction === 'rtl' ) |
| 198 |
|
$this->text_direction = 'rtl'; |
| 199 |
|
else |
| 200 |
|
$this->text_direction = 'ltr'; |
| 201 |
|
|
| 202 |
|
if ( isset( $data->language ) ) |
| 203 |
|
$this->language = $data->language; |