first commit

This commit is contained in:
alazhar
2020-01-02 22:20:31 +07:00
commit 10eb3340ad
5753 changed files with 631345 additions and 0 deletions

View File

@ -0,0 +1,101 @@
<?php
/**
* @version $Id: default.php 1812 2013-01-14 18:45:06Z lefteris.kavadas $
* @package K2
* @author JoomlaWorks http://www.joomlaworks.net
* @copyright Copyright (c) 2006 - 2013 JoomlaWorks Ltd. All rights reserved.
* @license GNU/GPL license: http://www.gnu.org/copyleft/gpl.html
*/
// no direct access
defined('_JEXEC') or die;
$document = JFactory::getDocument();
$document->addScriptDeclaration("
Joomla.submitbutton = function(pressbutton){
if (pressbutton == 'cancel') {
submitform( pressbutton );
return;
}
if (\$K2.trim(\$K2('#name').val()) == '') {
alert( '".JText::_('K2_GROUP_NAME_CANNOT_BE_EMPTY', true)."' );
} else {
submitform( pressbutton );
}
}
");
?>
<form action="index.php" method="post" name="adminForm" id="adminForm">
<div class="xmlParamsFields">
<table class="admintable table">
<tr>
<td class="key"><?php echo JText::_('K2_GROUP_NAME'); ?></td>
<td><input class="text_area k2TitleBox" type="text" name="name" id="name" value="<?php echo $this->row->name; ?>" size="50" maxlength="250" /></td>
</tr>
</table>
</div>
<div class="xmlParamsFields">
<h2 class="paramHeader"><?php echo JText::_('K2_ASSIGN_PERMISSIONS_FOR_THIS_GROUP'); ?></h2>
<?php if(K2_JVERSION == '15'): ?>
<?php echo $this->form->render('params'); ?>
<?php else: ?>
<fieldset class="panelform">
<ul class="adminformlist">
<?php foreach($this->form->getFieldset('user-permissions') as $field): ?>
<li>
<?php if($field->type=='header'): ?>
<div class="paramValueHeader"><?php echo $field->input; ?></div>
<?php elseif($field->type=='Spacer'): ?>
<div class="paramValueSpacer">&nbsp;</div>
<div class="clr"></div>
<?php else: ?>
<div class="paramLabel"><?php echo $field->label; ?></div>
<div class="paramValue"><?php echo $field->input; ?></div>
<div class="clr"></div>
<?php endif; ?>
</li>
<?php endforeach; ?>
</ul>
</fieldset>
<?php endif; ?>
</div>
<div class="xmlParamsFields">
<h2 class="paramHeader"><?php echo JText::_('K2_ASSIGN_GROUP_PERMISSIONS_TO_THESE_CATEGORIES'); ?></h2>
<fieldset class="panelform">
<ul class="adminformlist">
<li>
<div class="paramLabel"><?php echo JText::_('K2_FILTER'); ?></div>
<div class="paramValue">
<input id="categories-all" type="radio" name="categories" value="all"<?php if($this->categories == 'all') echo ' checked="checked"'; ?> />
<label for="categories-all"><?php echo JText::_('K2_ALL'); ?></label>
<input id="categories-none" type="radio" name="categories" value="none"<?php if($this->categories == 'none') echo ' checked="checked"'; ?> />
<label for="categories-none"><?php echo JText::_('K2_NONE'); ?></label>
<input id="categories-select" type="radio" name="categories" value="select" <?php if($this->categories != 'all' && $this->categories != 'none') echo ' checked="checked"'; ?> />
<label for="categories-select"><?php echo JText::_('K2_SELECT_FROM_LIST'); ?></label>
</div>
<div class="clr"></div>
</li>
<li>
<div class="paramLabel"><span class="editlinktip"><label for="paramscategories" id="paramscategories-lbl"><?php echo JText::_('K2_CATEGORIES'); ?></label></span></div>
<div class="paramValue"><?php echo $this->lists['categories']; ?></div>
<div class="clr"></div>
</li>
<li>
<div class="paramLabel"><span class="editlinktip"><label for="paramsinheritance" id="paramsinheritanceh-lbl"><?php echo JText::_('K2_AUTOMATICALLY_ASSIGN_GROUP_PERMISSIONS_TO_THE_CHILDREN_OF_SELECTED_CATEGORIES'); ?></label></span></div>
<div class="paramValue"><?php echo $this->lists['inheritance']; ?></div>
<div class="clr"></div>
</li>
</ul>
</fieldset>
</div>
<input type="hidden" name="id" value="<?php echo $this->row->id; ?>" />
<input type="hidden" name="option" value="com_k2" />
<input type="hidden" name="view" value="usergroup" />
<input type="hidden" name="task" value="<?php echo JRequest::getVar('task'); ?>" />
<?php echo JHTML::_('form.token'); ?>
</form>