예제 #1
0
<?php
/**
 * @package Deyan
 * @author Angel Gabriel
 * @web http://angelgabriel.tk
 * @mail angel.wrt@gmail.com
 *
 * @theme glass
 * @constants
 * This is the default/example theme for deyan shell. This file contains the constants wich will be passed to css files
 * You can declare any constant you want, and you would use it in the css like $vars['theme'][$constant]
 * 
 **/ 
 
$imagesurl = elgg_get_site_url() . 'mod/' . deyan_get_theme_plugin($theme) . "/views/default/themes/$theme/images/";
$vars = array(

	/*********************
	      MAIN
	*********************/

	'background' 	=> "url($imagesurl\wallpaper.jpg)",
	'shadow' 	=> '#000',
	'border' 	=> 'rgba(255, 255, 255, .9)',


	/*********************
	      WINDOWS
	*********************/
	'window_background' 	=> 'rgba(100, 100, 100, .2)',
	'window_main' 		=> 'rgba(255, 255, 255, .9)',
예제 #2
0
/**
 * Get the image preview of the theme
 *
 * @param string $theme 	the name of theme to get preview from.
 *
 * @return string	HTML of the image.
*/
function deyan_get_theme_preview($theme) {
	      
	      $plugin = deyan_get_theme_plugin($theme);
	      $img = "<img src=\"" . elgg_get_site_url() . "mod/$plugin/views/default/themes/$theme/preview.png\">";
	      
	      return $img;
}