allow themes to change the size of embedded videos
This commit is contained in:
parent
f9f45fa957
commit
d8a13d6e8d
6 changed files with 45 additions and 12 deletions
12
boot.php
12
boot.php
|
|
@ -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;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue