Proyectos de Subversion LeadersLinked - Antes de SPA

Rev

Rev 3391 | Rev 3394 | Ir a la última revisión | Mostrar el archivo completo | | | Autoría | Ultima modificación | Ver Log |

Rev 3391 Rev 3393
Línea 1... Línea 1...
1
<?php 
1
<?php
Línea 2... Línea 2...
2
 
2
 
3
$this->headMeta()->appendName('og:url', "$share_url");
3
$this->headMeta()->appendName('og:url', "$share_url");
4
$this->headMeta()->appendName('og:title', "$share_title");
4
$this->headMeta()->appendName('og:title', "$share_title");
5
$this->headMeta()->appendName('og:description', "$share_description");
5
$this->headMeta()->appendName('og:description', "$share_description");
Línea 11... Línea 11...
11
$this->headMeta()->appendName('twitter:description', "$share_description");
11
$this->headMeta()->appendName('twitter:description', "$share_description");
12
$this->headMeta()->appendName('twitter:image', "$share_image");
12
$this->headMeta()->appendName('twitter:image', "$share_image");
Línea 13... Línea 13...
13
 
13
 
14
$js = <<<JS
14
$js = <<<JS
15
const backendVars = {
15
const backendVars = {
16
  title:  $share_title,
16
  title: '$share_title',
17
  description:  $share_description,
17
  description: '$share_description',
18
  image:  $share_image,
18
  image: '$share_image',
19
  url:  $share_url,
19
  url: '$share_url'
20
}
20
}
Línea 21... Línea 21...
21
JS;
21
JS;
22
 
22