You've already forked joomla_test
first commit
This commit is contained in:
133
administrator/components/com_k2/elements/userslatest.php
Normal file
133
administrator/components/com_k2/elements/userslatest.php
Normal file
@ -0,0 +1,133 @@
|
||||
<?php
|
||||
/**
|
||||
* @version $Id: userslatest.php 1978 2013-05-15 19:34:16Z joomlaworks $
|
||||
* @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 ;
|
||||
|
||||
require_once (JPATH_ADMINISTRATOR.'/components/com_k2/elements/base.php');
|
||||
|
||||
class K2ElementUsersLatest extends K2Element
|
||||
{
|
||||
|
||||
function fetchElement($name, $value, &$node, $control_name)
|
||||
{
|
||||
JHTML::_('behavior.modal');
|
||||
$params = JComponentHelper::getParams('com_k2');
|
||||
$document = JFactory::getDocument();
|
||||
if (version_compare(JVERSION, '1.6.0', 'ge'))
|
||||
{
|
||||
JHtml::_('behavior.framework');
|
||||
}
|
||||
else
|
||||
{
|
||||
JHTML::_('behavior.mootools');
|
||||
}
|
||||
|
||||
K2HelperHTML::loadjQuery();
|
||||
|
||||
$mainframe = JFactory::getApplication();
|
||||
if (K2_JVERSION != '15')
|
||||
{
|
||||
$fieldName = $name;
|
||||
if (!$node->attributes('multiple'))
|
||||
{
|
||||
$fieldName .= '[]';
|
||||
}
|
||||
$image = JURI::root(true).'/administrator/templates/'.$mainframe->getTemplate().'/images/admin/publish_x.png';
|
||||
}
|
||||
else
|
||||
{
|
||||
$fieldName = $control_name.'['.$name.'][]';
|
||||
$image = JURI::root(true).'/administrator/images/publish_x.png';
|
||||
}
|
||||
|
||||
$js = "
|
||||
function jSelectUser(id, title, object) {
|
||||
var exists = false;
|
||||
\$K2('#usersList input').each(function(){
|
||||
if(\$K2(this).val()==id){
|
||||
alert('".JText::_('K2_THE_SELECTED_USER_IS_ALREADY_IN_THE_LIST', true)."');
|
||||
exists = true;
|
||||
}
|
||||
});
|
||||
if(!exists){
|
||||
var container = \$K2('<li/>').appendTo(\$K2('#usersList'));
|
||||
var img = \$K2('<img/>',{'class':'remove', src:'".$image."'}).appendTo(container);
|
||||
img.click(function(){\$K2(this).parent().remove();});
|
||||
var span = \$K2('<span/>',{'class':'handle'}).html(title).appendTo(container);
|
||||
var input = \$K2('<input/>',{value:id, type:'hidden', name:'".$fieldName."'}).appendTo(container);
|
||||
var div = \$K2('<div/>',{style:'clear:both;'}).appendTo(container);
|
||||
\$K2('#usersList').sortable('refresh');
|
||||
alert('".JText::_('K2_USER_ADDED_IN_THE_LIST', true)."');
|
||||
}
|
||||
}
|
||||
|
||||
\$K2(document).ready(function(){
|
||||
\$K2('#usersList').sortable({
|
||||
containment: '#usersList',
|
||||
items: 'li',
|
||||
handle: 'span.handle'
|
||||
});
|
||||
\$K2('body').css('overflow-y', 'scroll');
|
||||
\$K2('#usersList .remove').click(function(){
|
||||
\$K2(this).parent().remove();
|
||||
});
|
||||
});
|
||||
";
|
||||
|
||||
$document->addScriptDeclaration($js);
|
||||
$document->addStyleSheet(JURI::root(true).'/media/k2/assets/css/k2.modules.css?v=2.6.7');
|
||||
|
||||
$current = array();
|
||||
if (is_string($value) && !empty($value))
|
||||
{
|
||||
$current[] = $value;
|
||||
}
|
||||
if (is_array($value))
|
||||
{
|
||||
$current = $value;
|
||||
}
|
||||
|
||||
$output = '
|
||||
<div class="button2-left">
|
||||
<div class="blank">
|
||||
<a class="modal btn" title="'.JText::_('K2_CLICK_TO_SELECT_ONE_OR_MORE_USERS').'" href="index.php?option=com_k2&view=users&task=element&tmpl=component" rel="{handler: \'iframe\', size: {x: 700, y: 450}}">'.JText::_('K2_CLICK_TO_SELECT_ONE_OR_MORE_USERS').'</a>
|
||||
</div>
|
||||
</div>
|
||||
<div style="clear:both;"></div>
|
||||
';
|
||||
|
||||
$output .= '<ul id="usersList">';
|
||||
foreach ($current as $id)
|
||||
{
|
||||
$row = JFactory::getUser($id);
|
||||
$output .= '
|
||||
<li>
|
||||
<img class="remove" src="'.$image.'" alt="'.JText::_('K2_REMOVE_ENTRY_FROM_LIST').'" />
|
||||
<span class="handle">'.$row->name.'</span>
|
||||
<input type="hidden" value="'.$row->id.'" name="'.$fieldName.'"/>
|
||||
<span style="clear:both;"></span>
|
||||
</li>
|
||||
';
|
||||
}
|
||||
$output .= '</ul>';
|
||||
return $output;
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
class JFormFieldUsersLatest extends K2ElementUsersLatest
|
||||
{
|
||||
var $type = 'userslatest';
|
||||
}
|
||||
|
||||
class JElementUsersLatest extends K2ElementUsersLatest
|
||||
{
|
||||
var $_name = 'userslatest';
|
||||
}
|
Reference in New Issue
Block a user