Fork me on GitHub

Rapport de message :*
 

Re: Ajouter un champ au module News

Titre du sujet : Re: Ajouter un champ au module News
par irishcofee sur 30/11/2009 12:47:35

STORYFORM.INC.PHP

<?php
// $Id: storyform.inc.php,v 1.14 2004/09/03 17:30:43 hthouzard Exp $
//  ------------------------------------------------------------------------ //
//                XOOPS - PHP Content Management System                      //
//                    Copyright (c) 2000 XOOPS.org                           //
//                       <http://www.xoops.org/>   ... nbsp;   //
//  ------------------------------------------------------------------------ //
//  This program is free software; you can redistribute it and/or modify     //
//  it under the terms of the GNU General Public License as published by     //
//  the Free Software Foundation; either version 2 of the License, or        //
//  (at your option) any later version.                                      //
//                                                                           //
//  You may not change or alter any portion of this comment or credits       //
//  of supporting developers from this source code or any supporting         //
//  source code which is considered copyrighted (c) material of the          //
//  original comment or credit authors.                                      //
//                                                                           //
//  This program is distributed in the hope that it will be useful,          //
//  but WITHOUT ANY WARRANTY; without even the implied warranty of           //
//  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the            //
//  GNU General Public License for more details.                             //
//                                                                           //
//  You should have received a copy of the GNU General Public License        //
//  along with this program; if not, write to the Free Software              //
//  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA //
//  ------------------------------------------------------------------------ //
if (!defined('XOOPS_ROOT_PATH')) {
    die(
"XOOPS root path not defined");
}

if (
file_exists(XOOPS_ROOT_PATH.'/language/'.$xoopsConfig['language'].'/calendar.php')) {
    include_once 
XOOPS_ROOT_PATH.'/language/'.$xoopsConfig['language'].'/calendar.php';
} else {
    include_once 
XOOPS_ROOT_PATH.'/language/english/calendar.php';
}
include_once 
XOOPS_ROOT_PATH.'/class/xoopsformloader.php';
include_once 
XOOPS_ROOT_PATH.'/modules/course/include/functions.php';
include_once 
XOOPS_ROOT_PATH.'/modules/course/config.php';

$sform = new XoopsThemeForm(_NW_SUBMITcourse"storyform"XOOPS_URL.'/modules/'.$xoopsModule->getVar('dirname').'/submit.php');
$sform->setExtra('enctype="multipart/form-data"');
$sform->addElement(new XoopsFormText(_NW_TITLE'title'50255$title), true);

// Topic's selection box
if (!isset($xt)) {
    
$xt = new CourseTopic();
}
if(
$xt->getAllTopicsCount()==0) {
       
redirect_header("index.php",4,_NW_POST_SORRY);
       exit();
}

include_once 
XOOPS_ROOT_PATH."/class/tree.php";
$allTopics $xt->getAllTopics($xoopsModuleConfig['restrictindex'],'course_submit');
$topic_tree = new XoopsObjectTree($allTopics'topic_id''topic_pid');
$topic_select $topic_tree->makeSelBox('topic_id''topic_title''-- '$topicidfalse);
$sform->addElement(new XoopsFormLabel(_NW_TOPIC$topic_select));

//If admin - show admin form
//TODO: Change to "If submit privilege"
if ($approveprivilege) {
    
//Show topic image?
    
$sform->addElement(new XoopsFormRadioYN(_AM_TOPICDISPLAY'topicdisplay'$topicdisplay));
    
//Select image position
    
$posselect = new XoopsFormSelect(_AM_TOPICALIGN'topicalign'$topicalign);
    
$posselect->addOption('R'_AM_RIGHT);
    
$posselect->addOption('L'_AM_LEFT);
    
$sform->addElement($posselect);
    
//Publish in home?
    //TODO: Check that pubinhome is 0 = no and 1 = yes (currently vice versa)
    
$sform->addElement(new XoopsFormRadioYN(_AM_PUBINHOME'ihome'$ihome_NO_YES));
}

// Course author
if ($approveprivilege && is_object($xoopsUser) && $xoopsUser->isAdmin($xoopsModule->mid())) {
    if(!isset(
$courseauthor)) {
        
$courseauthor=$xoopsUser->getVar('uid');
    }
    
$member_handler = &xoops_gethandler'member' );
    
$usercount $member_handler->getUserCount();
    if ( 
$usercount $cfg['config_max_users_list']) {
        
$sform->addElement(new XoopsFormSelectUser(_NW_AUTHOR,'author',true$courseauthor),false);
    } else {
        
$sform->addElement(new XoopsFormText(_NW_AUTHOR_ID'author'1010$courseauthor), false);
    }
}

$editor=course_getWysiwygForm(_NW_THESCOOP'hometext'$hometext1560'hometext_hidden');
$sform->addElement($editor,true);

//Extra info
//If admin -> if submit privilege
if ($approveprivilege) {
    
$editor2=course_getWysiwygForm(_AM_EXTEXT'bodytext'$bodytext1560'bodytext_hidden');
    
$sform->addElement($editor2,false);

    if(
course_coursegetmoduleoption('tags')) {
        
$itemIdForTag = isset($storyid) ? $storyid 0;
        require_once 
XOOPS_ROOT_PATH.'/modules/tag/include/formtag.php';
        
$sform->addElement(new XoopsFormTag('item_tag'60255$itemIdForTag0));
    }

    if(
course_coursegetmoduleoption('metadata')) {
        
$sform->addElement(new xoopsFormText(_NW_META_DESCRIPTION'description'50255$description), false);
        
$sform->addElement(new xoopsFormText(_NW_META_KEYWORDS'keywords'50255$keywords), false);
    }
}

// Manage upload(s)
$allowupload false;
switch (
$xoopsModuleConfig['uploadgroups'])
{
    case 
1//Submitters and Approvers
        
$allowupload true;
        break;
    case 
2//Approvers only
        
$allowupload $approveprivilege true false;
        break;
    case 
3//Upload Disabled
        
$allowupload false;
        break;
}

if(
$allowupload)
{
    if(
$op=='edit') {
        
$sfiles = new sFiles();
        
$filesarr=Array();
        
$filesarr=$sfiles->getAllbyStory($storyid);
        if(
count($filesarr)>0) {
            
$upl_tray = new XoopsFormElementTray(_AM_UPLOAD_ATTACHFILE,'<br />');
            
$upl_checkbox=new XoopsFormCheckBox('''delupload[]');

            foreach (
$filesarr as $onefile)
            {
                
$link sprintf("<a href='%s/%s' target='_blank'>%s</a>n",XOOPS_UPLOAD_URL,$onefile->getDownloadname('S'),$onefile->getFileRealName('S'));
                
$upl_checkbox->addOption($onefile->getFileid(),$link);
            }
            
$upl_tray->addElement($upl_checkbox,false);
            
$dellabel=new XoopsFormLabel(_AM_DELETE_SELFILES,'');
            
$upl_tray->addElement($dellabel,false);
            
$sform->addElement($upl_tray);
        }
    }
    
$sform->addElement(new XoopsFormFile(_AM_SELFILE'attachedfile'$xoopsModuleConfig['maxuploadsize']), false);
}


$option_tray = new XoopsFormElementTray(_OPTIONS,'<br />');
//Set date of publish/expiration
if ($approveprivilege) {
    if(
is_object($xoopsUser) && $xoopsUser->isAdmin($xoopsModule->getVar('mid'))) {
        
$approve=1;
    }
    
$approve_checkbox = new XoopsFormCheckBox('''approve'$approve);
    
$approve_checkbox->addOption(1_AM_APPROVE);
    
$option_tray->addElement($approve_checkbox);

    
$check=$published>:0;
    
$published_checkbox = new XoopsFormCheckBox('''autodate',$check);
    
$published_checkbox->addOption(1_AM_SETDATETIME);
    
$option_tray->addElement($published_checkbox);

    
$option_tray->addElement(new XoopsFormDateTime(_AM_SETDATETIME'publish_date'15$published));

    
$check=$expired>:0;
    
$expired_checkbox = new XoopsFormCheckBox('''autoexpdate',$check);
    
$expired_checkbox->addOption(1_AM_SETEXPDATETIME);
    
$option_tray->addElement($expired_checkbox);

    
$option_tray->addElement(new XoopsFormDateTime(_AM_SETEXPDATETIME'expiry_date'15$expired));
  
// ajout irishcofee
  
$sform->addElement(new XoopsFormText(_NW_TITLE'price'5255$price), true);
  
//fin // ajout irishcofee
   //blueteen - events - begin
    
$check=$booked>:0;
    
$booked_checkbox = new XoopsFormCheckBox('''autobookdate',$check);
    
$booked_checkbox->addOption(1_AM_course_SETEVENTDATETIME);
    
$option_tray->addElement($booked_checkbox);

    
$option_tray->addElement(new XoopsFormDateTime(_AM_course_SETEVENTDATETIME_BEGIN'booked_date'15$booked));//date de début de l'évènement
    
$option_tray->addElement(new XoopsFormDateTime(_AM_course_SETEVENTDATETIME_END'bookedend_date'15$bookedend));//date de fin de l'évènement
    //blueteen - events - end
}

if (
is_object($xoopsUser)) {
    
$notify_checkbox = new XoopsFormCheckBox('''notifypub'$notifypub);
    
$notify_checkbox->addOption(1_NW_NOTIFYPUBLISH);
    
$option_tray->addElement($notify_checkbox);
    if (
$xoopsUser->isAdmin($xoopsModule->getVar('mid'))) {
        
$nohtml_checkbox = new XoopsFormCheckBox('''nohtml'$nohtml);
        
$nohtml_checkbox->addOption(1_DISABLEHTML);
        
$option_tray->addElement($nohtml_checkbox);
    }
}
$smiley_checkbox = new XoopsFormCheckBox('''nosmiley'$nosmiley);
$smiley_checkbox->addOption(1_DISABLESMILEY);
$option_tray->addElement($smiley_checkbox);


$sform->addElement($option_tray);

//TODO: Approve checkbox + "Move to top" if editing + Edit indicator

//Submit buttons
$button_tray = new XoopsFormElementTray('' ,'');
$preview_btn = new XoopsFormButton('''preview'_PREVIEW'submit');
$preview_btn->setExtra('accesskey="p"');
$button_tray->addElement($preview_btn);
$submit_btn = new XoopsFormButton('''post'_NW_POST'submit');
$submit_btn->setExtra('accesskey="s"');
$button_tray->addElement($submit_btn);
$sform->addElement($button_tray);

//Hidden variables
if(isset($storyid)){
    
$sform->addElement(new XoopsFormHidden('storyid'$storyid));
}

if (!isset(
$returnside)) {
    
$returnside=isset($_POST['returnside']) ? intval($_POST['returnside']) : 0;
    if(empty(
$returnside))    {
        
$returnside=isset($_GET['returnside']) ? intval($_GET['returnside']) : 0;
    }
}

if(!isset(
$returnside)) {
    
$returnside=0;
}
$sform->addElement(new XoopsFormHidden('returnside'$returnside),false);

if (!isset(
$type)) {
    if (
$approveprivilege) {
        
$type "admin";
    }
    else {
        
$type "user";
    }
}
$type_hidden = new XoopsFormHidden('type'$type);
$sform->addElement($type_hidden);
$sform->display();
?>

Propulsé avec XOOPS | Graphisme adapté par Tatane, Grosdunord, Montuy337513

64 Personne(s) en ligne (51 Personne(s) connectée(s) sur Forum) | Utilisateur(s): 0 | Invité(s): 64 | Plus ...