$e = explode('=', $line);
$variables[trim($e[0])] = trim($e[1]);
}
- $res .= ' data-animation="' . htmlspecialchars(json_encode($variables), ENT_QUOTES) . '" ';
+ if (isset($variables['type'])) {
+ if ($variables['direction'] == 'top') {
+ $variables['direction'] = 'up';
+ }
+ if ($variables['direction'] == 'bottom') {
+ $variables['direction'] = 'down';
+ }
+ $res .= ' data-animation-type="' . $variables['type'] . '" data-animation="' . htmlspecialchars(json_encode($variables), ENT_QUOTES) . '" ';
+ }
}
return $res;
}