Browse Source

theme install functions

pull/40/head
Savetheinternet 13 years ago
parent
commit
cec63231cf
  1. 4
      inc/functions.php
  2. 15
      mod.php

4
inc/functions.php

@ -155,7 +155,7 @@
global $config, $_theme;
$_theme = $theme;
$theme = loadThemeConfig($_theme, $action);
$theme = loadThemeConfig($_theme);
if(file_exists($config['dir']['themes'] . '/' . $_theme . '/theme.php')) {
require_once $config['dir']['themes'] . '/' . $_theme . '/theme.php';
@ -169,7 +169,7 @@
// List themes
$query = query("SELECT `theme` FROM `theme_settings` WHERE `name` IS NULL AND `value` IS NULL") or error(db_error());
while($theme = $query->fetch()) {
rebuildTheme($theme['theme']);
rebuildTheme($theme['theme'], $action);
}
}

15
mod.php

@ -360,13 +360,21 @@
$query->bindValue(':theme', $_theme);
$query->execute() or error(db_error($query));
$body = '';
if(isset($theme['install_callback'])) {
$ret = $theme['install_callback']($theme['config']);
if($ret && !empty($ret))
$body .= '<div style="border:1px dashed maroon;padding:20px;margin:auto;max-width:800px">' . $ret . '</div>';
}
$body .= '<p style="text-align:center">Successfully installed and built theme.</p>';
// Build themes
rebuildThemes('all');
echo Element('page.html', Array(
'config'=>$config,
'title'=>'Installed "' . htmlentities($theme['name']) . '"',
'body'=>'<p style="text-align:center">Successfully installed and built theme.</p>',
'body'=>$body,
'mod'=>true
)
);
@ -382,7 +390,10 @@
switch($c['type']) {
case 'text':
default:
$body .= '<input type="text" name="' . $c['name'] . '" />';
$body .= '<input type="text" name="' . htmlentities($c['name']) . '" ' .
(isset($c['default']) ? 'value="' . htmlentities($c['default']) . '" ' :'') .
(isset($c['size']) ? 'size="' . (int)$c['size'] . '" ' :'') .
'/>';
}
if(isset($c['comment']))
$body .= ' <span class="unimportant">' . $c['comment'] . '</span>';

Loading…
Cancel
Save