allow themes to change the size of embedded videos

This commit is contained in:
Zach Prezkuta 2012-08-06 09:59:57 -06:00
commit d8a13d6e8d
6 changed files with 45 additions and 12 deletions

View file

@ -349,12 +349,22 @@ if(! class_exists('App')) {
public $plugins;
public $apps = array();
public $identities;
public $sourcename = '';
public $nav_sel;
public $category;
// Allow themes to control internal parameters
// by changing App values in theme.php
//
// Possibly should make these part of the plugin
// system, but it seems like overkill to invoke
// all the plugin machinery just to change a couple
// of values
public $sourcename = '';
public $videowidth = 425;
public $videoheight = 350;
private $scheme;
private $hostname;
private $baseurl;