Newer
Older
if (!defined('OSTSCPINC') || !$thisstaff
$title=__('Update Category').': '.$category->getName();
$submit_text=__('Save Changes');
$info=$category->getHashtable();
$info['id']=$category->getId();
$info['notes'] = Format::viewableImages($category->getNotes());
$langs = $cfg->getSecondaryLanguages();
$translations = $category->getAllTranslations();
foreach ($langs as $tag) {
foreach ($translations as $t) {
if (strcasecmp($t->lang, $tag) === 0) {
$trans = $t->getComplex();
$info['trans'][$tag] = array(
'name' => $trans['name'],
'description' => Format::viewableImages($trans['description']),
);
break;
}
}
}
}
$info=Format::htmlchars(($errors && $_POST)?$_POST:$info);
?>
<form action="categories.php?<?php echo Http::build_query($qs); ?>" method="post" id="save">
<input type="hidden" name="do" value="<?php echo $action; ?>">
<input type="hidden" name="a" value="<?php echo Format::htmlchars($_REQUEST['a']); ?>">
<input type="hidden" name="id" value="<?php echo $info['id']; ?>">
<h2><?php echo __('FAQ Category');?></h2>
<div class="faq-title" style="margin:5px 0 15px">
<?php echo $title; ?>
</div>
<div style="margin:8px 0"><strong><?php echo __('Category Type');?>:</strong>
<span class="error">*</span></div>
<div style="margin-left:5px">
<input type="radio" name="ispublic" value="2" <?php echo $info['ispublic']?'checked="checked"':''; ?>><b><?php echo __('Featured');?></b> <?php echo __('(on front-page sidebar)');?>
<br/>
<input type="radio" name="ispublic" value="1" <?php echo $info['ispublic']?'checked="checked"':''; ?>><b><?php echo __('Public');?></b> <?php echo __('(publish)');?>
<br/>
<input type="radio" name="ispublic" value="0" <?php echo !$info['ispublic']?'checked="checked"':''; ?>><?php echo __('Private');?> <?php echo __('(internal)');?>
<br/>
<div class="error"><?php echo $errors['ispublic']; ?></div>
</div>
<div style="margin-top:20px"></div>
<ul class="tabs clean" style="margin-top:9px;">
<li class="active"><a href="#info"><?php echo __('Category Information'); ?></a></li>
<li><a href="#notes"><?php echo __('Internal Notes'); ?></a></li>
</ul>
<div class="tab_content" id="info">
<table width="100%"><tr>
<?php
$langs = Internationalization::getConfiguredSystemLanguages();
if (count($langs) > 1) { ?>
<td valign="top">
<ul class="vertical tabs left" id="trans" style="margin-top:10px;">
<li class="empty"><i class="icon-globe" title="This content is translatable"></i></li>
<?php foreach ($langs as $tag=>$i) {
list($lang, $locale) = explode('_', $tag);
?>
<li class="<?php if ($tag == $cfg->getPrimaryLanguage()) echo "active";
?>"><a href="#lang-<?php echo $tag; ?>" title="<?php
echo Internationalization::getLanguageDescription($tag);
?>"><span class="flag flag-<?php echo strtolower($i['flag'] ?: $locale ?: $lang); ?>"></span>
</a></li>
<?php } ?>
</ul>
<?php foreach ($langs as $tag=>$i) {
$code = $i['code'];
$cname = 'name';
$dname = 'description';
if ($tag == $cfg->getPrimaryLanguage()) {
$category = $info[$cname];
$desc = $info[$dname];
}
else {
$category = $info['trans'][$code][$cname];
$desc = $info['trans'][$code][$dname];
$cname = "trans[$code][$cname]";
$dname = "trans[$code][$dname]";
} ?>
<div class="tab_content left <?php
if ($code != $cfg->getPrimaryLanguage()) echo "hidden";
?>" id="lang-<?php echo $tag; ?>"
<?php if ($i['direction'] == 'rtl') echo 'dir="rtl" class="rtl"'; ?>
>
<div style="padding-bottom:8px;">
<b><?php echo __('Category Name');?></b>:
<span class="error">*</span>
<div class="faded"><?php echo __('Short descriptive name.');?></div>
</div>
<input type="text" size="70" style="font-size:110%;width:100%;box-sizing:border-box"
name="<?php echo $cname; ?>" value="<?php echo $category; ?>">
<div class="error"><?php echo $errors['name']; ?></div>
<div style="padding:8px 0;">
<b><?php echo __('Category Description');?></b>:
<span class="error">*</span>
<div class="faded"><?php echo __('Summary of the category.');?></div>
<div class="error"><?php echo $errors['description']; ?></div>
</div>
<textarea class="richtext" name="<?php echo $dname; ?>" cols="21" rows="12"
style="width:100%;"><?php
echo $desc; ?></textarea>
</div>
<?php } ?>
</div>
<div class="tab_content" id="notes" style="display:none;">
<b><?php echo __('Internal Notes');?></b>:
<div class="faded"><?php echo __("Be liberal, they're internal");?></div>
<textarea class="richtext no-bar" name="notes" cols="21"
rows="8" style="width: 80%;"><?php echo $info['notes']; ?></textarea>
</div>
<p style="text-align:center">
<input type="submit" name="submit" value="<?php echo $submit_text; ?>">
<input type="reset" name="reset" value="<?php echo __('Reset');?>">
<input type="button" name="cancel" value="<?php echo __('Cancel');?>" onclick='window.location.href="categories.php"'>