You can not select more than 25 topics
			Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
		
		
		
		
		
			
		
			
				
					
					
						
							84 lines
						
					
					
						
							3.0 KiB
						
					
					
				
			
		
		
	
	
							84 lines
						
					
					
						
							3.0 KiB
						
					
					
				<?php
 | 
						|
/* For licensing terms, see /license.txt */
 | 
						|
/**
 | 
						|
 * @package chamilo.social
 | 
						|
 * @author Julio Montoya <gugli100@gmail.com>
 | 
						|
 */
 | 
						|
$cidReset = true;
 | 
						|
require_once '../inc/global.inc.php';
 | 
						|
 | 
						|
api_block_anonymous_users();
 | 
						|
if (api_get_setting('allow_social_tool') !='true') {
 | 
						|
    api_not_allowed();
 | 
						|
}
 | 
						|
 | 
						|
if (api_get_setting('allow_students_to_create_groups_in_social') == 'false' && !api_is_allowed_to_edit()) {
 | 
						|
    api_not_allowed();
 | 
						|
}
 | 
						|
 | 
						|
global $charset;
 | 
						|
$htmlHeadXtra[] = '<script>
 | 
						|
textarea = "";
 | 
						|
num_characters_permited = 255;
 | 
						|
function text_longitud(){
 | 
						|
    num_characters = document.forms[0].description.value.length;
 | 
						|
    if (num_characters > num_characters_permited){
 | 
						|
        document.forms[0].description.value = textarea;
 | 
						|
    } else {
 | 
						|
      textarea = document.forms[0].description.value;
 | 
						|
    }
 | 
						|
}
 | 
						|
</script>';
 | 
						|
 | 
						|
$table_message = Database::get_main_table(TABLE_MESSAGE);
 | 
						|
 | 
						|
$form = new FormValidator('add_group');
 | 
						|
$form = GroupPortalManager::setGroupForm($form);
 | 
						|
$form->addElement('style_submit_button', 'add_group', get_lang('AddGroup'), 'class="save"');
 | 
						|
 | 
						|
$form->setRequiredNote(api_xml_http_response_encode('<span class="form_required">*</span> <small>'.get_lang('ThisFieldIsRequired').'</small>'));
 | 
						|
 | 
						|
if ($form->validate()) {
 | 
						|
    $values = $form->exportValues();
 | 
						|
 | 
						|
    $picture_element = $form->getElement('picture');
 | 
						|
    $picture 		= $picture_element->getValue();
 | 
						|
    $picture_uri 	= '';
 | 
						|
    $name 			= $values['name'];
 | 
						|
    $description	= $values['description'];
 | 
						|
    $url 			= $values['url'];
 | 
						|
    $status 		= intval($values['visibility']);
 | 
						|
    $picture 		= $_FILES['picture'];
 | 
						|
 | 
						|
    $group_id = GroupPortalManager::add($name, $description, $url, $status);
 | 
						|
    GroupPortalManager::add_user_to_group(api_get_user_id(), $group_id, GROUP_USER_PERMISSION_ADMIN);
 | 
						|
 | 
						|
    if (!empty($picture['name'])) {
 | 
						|
        $picture_uri = GroupPortalManager::update_group_picture($group_id, $_FILES['picture']['name'], $_FILES['picture']['tmp_name']);
 | 
						|
        GroupPortalManager::update($group_id, $name, $description, $url, $status, $picture_uri);
 | 
						|
    }
 | 
						|
    header('Location: groups.php?id='.$group_id.'&action=show_message&message='.urlencode(get_lang('GroupAdded')));
 | 
						|
    exit();
 | 
						|
}
 | 
						|
 | 
						|
$nameTools = get_lang('AddGroup');
 | 
						|
$this_section = SECTION_SOCIAL;
 | 
						|
 | 
						|
$interbreadcrumb[]= array ('url' =>'home.php','name' => get_lang('Social'));
 | 
						|
$interbreadcrumb[]= array ('url' =>'groups.php','name' => get_lang('Groups'));
 | 
						|
$interbreadcrumb[]= array ('url' =>'#','name' => $nameTools);
 | 
						|
 | 
						|
$social_avatar_block = SocialManager::show_social_avatar_block('group_add');
 | 
						|
$social_menu_block = SocialManager::show_social_menu('group_add');
 | 
						|
 | 
						|
$social_right_content = $form->return_form();
 | 
						|
 | 
						|
$tpl = new Template();
 | 
						|
$tpl->set_help('Groups');
 | 
						|
$tpl->assign('social_avatar_block', $social_avatar_block);
 | 
						|
$tpl->assign('social_menu_block', $social_menu_block);
 | 
						|
$tpl->assign('social_right_content', $social_right_content);
 | 
						|
//$tpl->assign('actions', $actions);
 | 
						|
//$tpl->assign('message', $show_message);
 | 
						|
$social_layout = $tpl->get_template('social/add_groups.tpl');
 | 
						|
$tpl->display($social_layout);
 | 
						|
 |