This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?php | |
| // include required files form Facebook SDK | |
| // added in v4.0.5 | |
| require_once( 'Facebook/FacebookHttpable.php' ); | |
| require_once( 'Facebook/FacebookCurl.php' ); | |
| require_once( 'Facebook/FacebookCurlHttpClient.php' ); | |
| // added in v4.0.0 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| if($imagen == "" && $opciones['no_img']){ | |
| if($opciones['imagen_alterna']){ | |
| $imagen = $opciones['imagen_alterna']; | |
| $imagen_alt = true; | |
| } | |
| else $imagen = RUTA_ARCHIVOS."general/no_img.jpg"; | |
| } |