function dowork() { $canIhaveAccess = 0; $canIhaveAccess = $canIhaveAccess + checklevel('admin'); if ($canIhaveAccess == 1) { if (is_writable('settings.php') == 0) { die("Error: settings.php is not writeable."); } if (isset($_REQUEST['action'])) { $action = $_REQUEST['action']; } else { $action = "view"; } if ($action == "view") { $config = new pliggconfig(); if (isset($_REQUEST['page'])) { $config->var_page = $_REQUEST['page']; $config->showpage(); } } if ($action == "save") { $config = new pliggconfig(); $config->var_id = substr($_REQUEST['var_id'], 6, 10); $config->var_value = $_REQUEST['var_value']; $config->store(); } } }
function dowork() { global $db; $canIhaveAccess = 0; $canIhaveAccess = $canIhaveAccess + checklevel('god'); if ($canIhaveAccess == 1) { if (is_writable('../settings.php') == 0) { die("Error: settings.php is not writeable."); } $action = isset($_REQUEST['action']) && sanitize($_REQUEST['action'], 3) != '' ? sanitize($_REQUEST['action'], 3) : "view"; if ($action == "view") { $config = new pliggconfig(); if (isset($_REQUEST['page'])) { $config->var_page = sanitize($_REQUEST['page'], 3); $config->showpage(); } else { $config->listpages(); } } if ($action == "save") { $config = new pliggconfig(); $config->var_id = substr(sanitize($_REQUEST['var_id'], 3), 6, 10); $config->var_value = $db->escape($_REQUEST['var_value']); $config->store(); } } }
</tr> <tr> <td><label></label></td> <td><input type="submit" class="btn btn-primary" name="Submit" value="' . $lang['CreateAdmin'] . '" /></td> </tr> <input type="hidden" name="language" value="' . addslashes(strip_tags($_REQUEST['language'])) . '"> <input type="hidden" name="step" value="5"> </form> </table> </div> '; } mysql_query($sql, $conn); if (isset($errors)) { $output = DisplayErrors($errors); $output .= '<p>' . $lang['Errors'] . '</p>'; } if (function_exists("gd_info")) { } else { $config = new pliggconfig(); $config->var_id = 60; $config->var_value = "false"; $config->store(); $config->var_id = 69; $config->var_value = "false"; $config->store(); } echo $output; echo '</div>';
function template_management_showpage() { // Method for identifying modules define('modulename', 'template_management'); global $main_smarty, $the_template, $db; $main_smarty->assign('modulename', modulename); include_once mnminclude . 'admin_config.php'; force_authentication(); $canIhaveAccess = 0; $canIhaveAccess = $canIhaveAccess + checklevel('admin'); if ($canIhaveAccess == 1) { if (isset($_REQUEST['action'])) { $action = sanitize($_REQUEST['action'], 3); } else { $action = ''; } if (isset($_REQUEST['template'])) { $template = sanitize($_REQUEST['template'], 3); } else { $template = ''; } if (isset($_REQUEST['version'])) { $version = sanitize($_REQUEST['version'], 3); } else { $version = ''; } if (isset($_REQUEST['path'])) { $download_path = sanitize($_REQUEST['path'], 3); } else { $download_path = ''; } if (is_writable('./templates')) { $can_write = true; } else { $can_write = false; } $main_smarty->assign('can_write_to_template_folder', $can_write); if ($action == "down_and_ext") { $url = "http://www.pligg.com/PackedTemplates/download.php?template=" . $template; $r = new HTTPRequest($url); $new_url = $r->DownloadToString(); $msg = template_management_download($new_url); $x = explode('/', str_replace('.tar', '', $new_url)); $filename = '/' . $x[count($x) - 2] . '_template.tar'; $msg = template_management_unpack($filename); } if ($action == "viewonline") { $navwhere['text1'] = $main_smarty->get_config_vars('PLIGG_Visual_Header_AdminPanel'); $navwhere['link1'] = getmyurl('admin', ''); $main_smarty->display(template_management_tpl_path . '/blank.tpl'); $navwhere['text2'] = $main_smarty->get_config_vars('PLIGG_Template_Management_BreadCrumb'); $navwhere['link2'] = URL_template_management; define('pagename', 'template_management'); $main_smarty->assign('pagename', pagename); $main_smarty->assign('navbar_where', $navwhere); $main_smarty->assign('posttitle', " / " . $main_smarty->get_config_vars('PLIGG_Visual_Header_AdminPanel')); $main_smarty = do_sidebar($main_smarty); $main_smarty->assign('tpl_center', template_management_tpl_path . 'template_management_viewonline'); $main_smarty->display($template_dir . '/admin/admin.tpl'); } if ($action == "setDefault") { $config = new pliggconfig(); $config->var_id = 52; $config->var_value = $template; $config->store(false); header('Location: module.php?module=template_management'); } if ($action == "pack") { if (is_dir('./templates/' . $template)) { $msg = template_management_pack($template, $version); } else { $msg = 'Error, invalid template.'; } } if ($action == "unpack") { $msg = template_management_unpack($template); } if ($action == "download") { $msg = template_management_download($download_path); } if ($action == "delete") { $msg = template_management_delete($template); } if ($action == "deletePacked") { $msg = template_management_delete_packed($template); } if (!isset($msg)) { $msg = ''; } $main_smarty->assign('msg', $msg); // find out what template is currently installed $config = new pliggconfig(); $config->var_id = 52; $config->read(); $current_template = $config->var_value; $main_smarty->assign('current_template', $current_template); // find out what templates are available $template_folders = array(); $default_template_details = array(); // the default template $available_template_details = array(); // templates installed and available for use $incompatible_template_details = array(); // templates that are not marked as compatible $extracted_templates = array(); // packed templates that are found to be already extracted $packed_templates = array(); // packed templates, havn't checked to see if extracted or not if ($handle = opendir('./templates')) { while (false !== ($file = readdir($handle))) { if ($file != "." && $file != ".." && $file != ".svn") { if (!is_dir('./templates/' . $file)) { if (strpos($file, 'template.tar') > 0) { $packed_templates[$file] = $file; } } } } closedir($handle); } if ($handle = opendir('./templates')) { while (false !== ($file = readdir($handle))) { if ($file != "." && $file != ".." && $file != ".svn") { if (is_dir('./templates/' . $file)) { if (file_exists('./templates/' . $file . '/template_details.php')) { $template_folders[] = $file; $details = template_management_read_details($file); $details['folder'] = $file; $details['can_install'] = true; $details['URL_pack'] = 'module.php?module=template_management&action=pack&template=' . $details['folder'] . '&version=' . $details['version']; // if this is the default yget template, don't allow it to be packed or unpacked // we don't want to break the default template in any way. if ($file == 'yget') { $details['allow_pack_and_unpack'] = false; } else { $details['allow_pack_and_unpack'] = true; } $tmp_file = '/templates/' . $details['folder'] . '_template.tar'; if (file_exists('.' . $tmp_file)) { $details['is_packed'] = my_pligg_base . $tmp_file; $extracted_templates[$file] = $tmp_file; $f = $details['folder'] . '_template.tar'; if (isset($packed_templates[$f])) { unset($packed_templates[$f]); } } else { $details['is_packed'] = 0; } if ($current_template == $file) { $default_template_details[$file] = $details; } else { if ($details['designed_for_pligg_version'] != pligg_version()) { $details['can_install'] = false; $incompatible_template_details[$file] = $details; } else { $available_template_details[$file] = $details; } } } } } } closedir($handle); } $main_smarty->assign('template_folders', $template_folders); $main_smarty->assign('default_template_details', $default_template_details); $main_smarty->assign('available_template_details', $available_template_details); $main_smarty->assign('incompatible_template_details', $incompatible_template_details); $main_smarty->assign('packed_templates', $packed_templates); $navwhere['text1'] = $main_smarty->get_config_vars('PLIGG_Visual_Header_AdminPanel'); $navwhere['link1'] = getmyurl('admin', ''); $main_smarty->display(template_management_tpl_path . '/blank.tpl'); $navwhere['text2'] = $main_smarty->get_config_vars('PLIGG_Template_Management_BreadCrumb'); $navwhere['link2'] = URL_template_management; define('pagename', 'template_management'); $main_smarty->assign('pagename', pagename); $main_smarty->assign('navbar_where', $navwhere); $main_smarty->assign('posttitle', " / " . $main_smarty->get_config_vars('PLIGG_Visual_Header_AdminPanel')); $main_smarty = do_sidebar($main_smarty); $main_smarty->assign('tpl_center', template_management_tpl_path . 'template_management_main'); $main_smarty->display($template_dir . '/admin/admin.tpl'); } else { echo "not for you."; } }
function dowork() { global $db, $main_smarty; $canIhaveAccess = 0; $canIhaveAccess = $canIhaveAccess + checklevel('god'); if ($canIhaveAccess == 1) { if (is_writable('../settings.php') == 0) { die("Error: settings.php is not writeable."); } $action = isset($_REQUEST['action']) && sanitize($_REQUEST['action'], 3) != '' ? sanitize($_REQUEST['action'], 3) : "view"; if ($action == "view") { $config = new pliggconfig(); $config->listpages(); if (isset($_REQUEST['page'])) { $config->var_page = sanitize($_REQUEST['page'], 3); $config->showpage(); # }else{ # $config->listpages(); } } if ($action == "save") { $config = new pliggconfig(); // $config->var_id = substr(sanitize($_REQUEST['var_id'], 3), 6, 10); $config->var_id = sanitize($_REQUEST['var_id'], 3); $config->read(); // Check if template exists if ($config->var_name == '$thetemp' && $config->var_value != js_urldecode($_REQUEST['var_value'])) { if (!file_exists('../templates/' . js_urldecode($_REQUEST['var_value']))) { print "alert('" . $main_smarty->get_config_vars('PLIGG_Visual_AdminPanel_NoTemplate') . "')"; exit; } else { if (file_exists('../templates/' . js_urldecode($_REQUEST['var_value']) . '/template_details.php')) { include '../templates/' . js_urldecode($_REQUEST['var_value']) . '/template_details.php'; } if ($template_info['designed_for_pligg_version'] < pligg_version() && !$_REQUEST['force']) { if (!$template_info['designed_for_pligg_version']) { $template_info['designed_for_pligg_version'] = 'unknown'; } print sprintf("if (confirm('" . $main_smarty->get_config_vars('PLIGG_Visual_AdminPanel_Template_Version') . "')) {XMLHttpRequestObject.open('GET', '?action=save&var_id={$config->var_id}&var_value=" . urlencode($_REQUEST['var_value']) . "&force=1', true); XMLHttpRequestObject.send(null);}", $template_info['designed_for_pligg_version'], pligg_version()); exit; } } } $config->var_value = $db->escape(js_urldecode($_REQUEST['var_value'])); $config->store(false); } } }