Public Member Functions | Data Fields

ilPaymentCouponGUI Class Reference

Inheritance diagram for ilPaymentCouponGUI:
Collaboration diagram for ilPaymentCouponGUI:

Public Member Functions

 ilPaymentCouponGUI (&$user_obj)
executeCommand ()
 execute command
 resetFilter ()
 showCoupons ()
 __showCouponsTable ($f_result)
 saveCouponForm ()
 addCoupon ()
 deleteAllCodes ()
 performDeleteAllCodes ()
 deleteCodes ()
 performDeleteCodes ()
 cancelDelete ()
 showCodes ($a_show_delete="")
 exportCodes ()
 saveCodeForm ()
 __makeCode ($a_code="", $a_length=32)
 generateCodes ($view="choice")
 assignObjects ()
 unassignObjects ()
 showObjects ()
 importCodes ()
 showCodeImport ()
 __showButtons ()
 __initPaymentObject ($a_pobject_id=0)
 __initCouponObject ()

Data Fields

 $ctrl
 $lng
 $user_obj = null
 $coupon_obj = null
 $pobject = null

Detailed Description

Definition at line 2 of file class.ilPaymentCouponGUI.php.


Member Function Documentation

ilPaymentCouponGUI::__initCouponObject (  ) 

Definition at line 960 of file class.ilPaymentCouponGUI.php.

Referenced by ilPaymentCouponGUI().

        {
                include_once './payment/classes/class.ilPaymentCoupons.php';    

                $this->coupon_obj =& new ilPaymentCoupons($this->user_obj, true);

                return true;
        }

Here is the caller graph for this function:

ilPaymentCouponGUI::__initPaymentObject ( a_pobject_id = 0  ) 

Definition at line 951 of file class.ilPaymentCouponGUI.php.

Referenced by showObjects().

        {
                include_once './payment/classes/class.ilPaymentObject.php';

                $this->pobject =& new ilPaymentObject($this->user_obj, $a_pobject_id);

                return true;
        }

Here is the caller graph for this function:

ilPaymentCouponGUI::__makeCode ( a_code = "",
a_length = 32 
)

Definition at line 616 of file class.ilPaymentCouponGUI.php.

Referenced by saveCodeForm().

        {
                if ($a_code == "") $a_code = md5(uniqid(rand()));
        
                if (strlen($a_code) > $a_length)
                {
                        $a_code = substr($a_code, 0, $a_length);
                }               
                                
                return $a_code;
        }

Here is the caller graph for this function:

ilPaymentCouponGUI::__showButtons (  ) 

Definition at line 942 of file class.ilPaymentCouponGUI.php.

References ilPaymentBaseGUI::showButton().

Referenced by addCoupon(), generateCodes(), showCodeImport(), showCodes(), and showObjects().

        {
                $this->showButton('addCoupon', $this->lng->txt('paya_coupons_edit'));
                $this->showButton('showCodes', $this->lng->txt('paya_coupons_edit_codes'));
                $this->showButton('showObjects', $this->lng->txt('paya_coupons_edit_objects'));
                
                return true;            
        }

Here is the call graph for this function:

Here is the caller graph for this function:

ilPaymentCouponGUI::__showCouponsTable ( f_result  ) 

Definition at line 177 of file class.ilPaymentCouponGUI.php.

References $_GET, $tbl, ilPaymentBaseGUI::$tpl, and ilPaymentBaseGUI::initTableGUI().

Referenced by showCoupons().

        {
                $tbl =& $this->initTableGUI();
                $tpl =& $tbl->getTemplateObject();

                $tpl->setCurrentBlock("tbl_form_header");

                $tpl->setVariable("FORMACTION",$this->ctrl->getFormAction($this));
                $tpl->parseCurrentBlock();      

                $tbl->setTitle($this->lng->txt("paya_coupons_coupons"), "icon_pays.gif", $this->lng->txt("paya_coupons_coupons"));
                $tbl->setHeaderNames(array($this->lng->txt("paya_coupons_title"),
                                                                   $this->lng->txt("paya_coupons_number_of_codes"),
                                                                   $this->lng->txt("paya_coupons_usage_of_codes"),
                                                                   $this->lng->txt("paya_coupons_objects"),
                                                                   $this->lng->txt("paya_coupons_from"),
                                                                   $this->lng->txt("paya_coupons_till"),
                                                                   $this->lng->txt("last_change"), ''));
                $header_params = $this->ctrl->getParameterArray($this, '');
                $tbl->setHeaderVars(array('pc_title',
                                                                  'number_of_codes',
                                                                  'usage_of_codes',
                                                                  'objects',
                                                                  'pc_from',
                                                                  'pc_till',                                                              
                                                                  'last_changed'), 
                                                                  $header_params
                                                        );
                $offset = $_GET['offset'];
                $order = $_GET['sort_by'];
                $direction = $_GET['sort_order'] ? $_GET['sort_order'] : 'desc';
                $tbl->setOrderColumn($order,'pc_title');
                $tbl->setOrderDirection($direction);
                $tbl->setOffset($offset);
                $tbl->setLimit($_GET['limit']);
                $tbl->setMaxCount(count($f_result));
                $tbl->setFooter('tblfooter', $this->lng->txt('previous'), $this->lng->txt('next'));
                $tbl->setData($f_result);
                $tbl->render();

                $this->tpl->setVariable('COUPONS_TABLE', $tbl->tpl->get());
                
                return true;    
        }

Here is the call graph for this function:

Here is the caller graph for this function:

ilPaymentCouponGUI::addCoupon (  ) 

Definition at line 280 of file class.ilPaymentCouponGUI.php.

References $_GET, __showButtons(), ilUtil::makeDateSelect(), and ilUtil::prepareFormOutput().

Referenced by saveCouponForm().

        {               
                $this->tpl->addBlockfile('ADM_CONTENT','adm_content','tpl.paya_coupons_add.html','payment');            
                
                if (isset($_GET['coupon_id']))
                {
                        if ($this->error == '') $this->coupon_obj->getCouponById($_GET['coupon_id']);
                        
                        $this->ctrl->setParameter($this, 'coupon_id', $this->coupon_obj->getId());                                              
                        
                        $this->__showButtons();                 
                }               
                
                $this->tpl->setVariable('FORMACTION', $this->ctrl->getFormAction($this));

                $this->tpl->setVariable('TXT_HEADLINE', ($this->coupon_obj->getId() != '' ? $this->lng->txt('paya_coupons_edit') : $this->lng->txt('paya_coupons_add')));
                $this->tpl->setVariable('TXT_TITLE', $this->lng->txt('paya_coupons_title'));
                $this->tpl->setVariable('TXT_DESCRIPTION', $this->lng->txt('paya_coupons_description'));
                $this->tpl->setVariable('TXT_TYPE', $this->lng->txt('paya_coupons_type'));
                $this->tpl->setVariable('TXT_FIX', $this->lng->txt('paya_coupons_fix'));
                $this->tpl->setVariable('TXT_PERCENTAGED', $this->lng->txt('paya_coupons_percentaged'));
                $this->tpl->setVariable('TXT_VALUE', $this->lng->txt('paya_coupons_value'));
                $this->tpl->setVariable('TXT_ENABLED', $this->lng->txt('enabled'));
                $this->tpl->setVariable('TXT_VALID_FROM', $this->lng->txt('paya_coupons_from'));
                $this->tpl->setVariable('TXT_VADID_TILL', $this->lng->txt('paya_coupons_till'));
                $this->tpl->setVariable('TXT_USAGE', $this->lng->txt('paya_coupons_availability'));
                
                $this->tpl->setVariable('TITLE', ilUtil::prepareFormOutput($this->coupon_obj->getTitle() , true));
                $this->tpl->setVariable('DESCRIPTION', ilUtil::prepareFormOutput($this->coupon_obj->getDescription(), true));
                $this->tpl->setVariable('TYPE_' . strtoupper($this->coupon_obj->getType()), " selected=\"selected\"");
                $this->tpl->setVariable('VALUE', ilUtil::prepareFormOutput($this->coupon_obj->getValue(), true));
                $this->tpl->setVariable('USAGE', ilUtil::prepareFormOutput($this->coupon_obj->getUses(), true));
                
                $from_date = explode('-', $this->coupon_obj->getFromDate());
                $from_day = $from_date[2] != '00' ? $from_date[2] : '';
                $from_month = $from_date[1] != '00' ? $from_date[1] : '';
                $from_year = $from_date[0] != '0000' ? $from_date[0] : '';
                        
                $till_date = explode('-', $this->coupon_obj->getTillDate());
                $till_day = $till_date[2] != '00' ? $till_date[2] : '';
                $till_month = $till_date[1] != '00' ? $till_date[1] : '';
                $till_year = $till_date[0] != '0000' ? $till_date[0] : '';

                if ($this->coupon_obj->getFromDateEnabled()) $this->tpl->setVariable('CHECKED_STARTING_DATE', " checked=\"checked\"");
                if ($this->coupon_obj->getTillDateEnabled()) $this->tpl->setVariable('CHECKED_ENDING_DATE', " checked=\"checked\"");
                
                $this->tpl->setVariable('DATE_FROM', ilUtil::makeDateSelect("from", $from_year, $from_month, $from_day, 2004));
                $this->tpl->setVariable('DATE_TILL', ilUtil::makeDateSelect("till", $till_year, $till_month, $till_day, 2004));
                
                $this->tpl->setVariable('TXT_REQUIRED_FIELDS', $this->lng->txt('required_field'));
                $this->tpl->setVariable('TXT_SAVE',$this->lng->txt('save'));
                $this->tpl->setVariable('TXT_CANCEL',$this->lng->txt('cancel'));
                $this->tpl->setVariable('COUPONS', 'showCoupons');
        }

Here is the call graph for this function:

Here is the caller graph for this function:

ilPaymentCouponGUI::assignObjects (  ) 

Definition at line 681 of file class.ilPaymentCouponGUI.php.

References $_GET, and showObjects().

        {
                if (is_array($_POST['objects']))
                {
                        $this->coupon_obj->setId($_GET["coupon_id"]);           
                        foreach($_POST['objects'] as $id)
                        {                                                       
                                if ($id)
                                {                                       
                                        $this->coupon_obj->assignObjectToCoupon($id);
                                }
                        }                       
                }
                
                $this->showObjects();
                
                return true;
        }

Here is the call graph for this function:

ilPaymentCouponGUI::cancelDelete (  ) 

Definition at line 386 of file class.ilPaymentCouponGUI.php.

References $_SESSION, and showCodes().

        {
                unset($_SESSION['paya_delete_codes']);
                
                $this->showCodes();

                return true;
        }

Here is the call graph for this function:

ilPaymentCouponGUI::deleteAllCodes (  ) 

Definition at line 335 of file class.ilPaymentCouponGUI.php.

References showCodes().

        {               
                $this->showCodes("all");
                
                return true;
        }

Here is the call graph for this function:

ilPaymentCouponGUI::deleteCodes (  ) 

Definition at line 351 of file class.ilPaymentCouponGUI.php.

References $_SESSION, ilUtil::sendInfo(), and showCodes().

        {
                $_SESSION['paya_delete_codes'] = $_POST['codes'];
                
                if (!is_array($_POST['codes']))
                {
                        ilUtil::sendInfo($this->lng->txt('paya_coupons_no_codes_selected'));
                        
                        $this->showCodes();

                        return true;
                }
                
                $this->showCodes("selected");
                
                return true;
        }

Here is the call graph for this function:

& ilPaymentCouponGUI::executeCommand (  ) 

execute command

Definition at line 29 of file class.ilPaymentCouponGUI.php.

References $cmd.

        {
                global $tree;

                $cmd = $this->ctrl->getCmd();
                switch ($this->ctrl->getNextClass($this))
                {
                        default:
                                if (!$cmd = $this->ctrl->getCmd())
                                {
                                        $cmd = 'showCoupons';
                                }
                                
                                $this->$cmd();
                                break;
                }
        }

ilPaymentCouponGUI::exportCodes (  ) 

Definition at line 507 of file class.ilPaymentCouponGUI.php.

References $_GET, $data, ilUtil::deliverData(), and showCodes().

        {
                $codes = $this->coupon_obj->getCodesByCouponId($_GET["coupon_id"]);
                
                if (is_array($codes))
                {
                        include_once('./Services/Utilities/classes/class.ilCSVWriter.php');                     
                        
                        $csv = new ilCSVWriter();
                        $csv->setDelimiter("");                 
                        
                        foreach($codes as $data)
                        {                                                       
                                if ($data["pcc_code"])
                                {                                       
                                        $csv->addColumn($data["pcc_code"]);
                                        $csv->addRow();                                 
                                }
                        }
                        
                        ilUtil::deliverData($csv->getCSVString(), "code_export_".date("Ymdhis").".csv");
                }
                
                $this->showCodes();
                
                return true;
        }

Here is the call graph for this function:

ilPaymentCouponGUI::generateCodes ( view = "choice"  ) 

Definition at line 628 of file class.ilPaymentCouponGUI.php.

References $_GET, __showButtons(), ilUtil::prepareFormOutput(), and ilUtil::stripSlashes().

Referenced by saveCodeForm(), and showCodes().

        {               
                $this->coupon_obj->setId($_GET['coupon_id']);
                
                $this->ctrl->setParameter($this, 'coupon_id', $_GET['coupon_id']);
                $this->__showButtons();
                
                $this->tpl->addBlockfile('ADM_CONTENT','adm_content','tpl.paya_coupons_codes_generate.html','payment');
                
                $this->coupon_obj->getCouponById(ilUtil::stripSlashes($_GET['coupon_id']));
                                
                $this->tpl->setVariable("FORMACTION", $this->ctrl->getFormAction($this));
                $this->tpl->setVariable("TXT_HEADLINE", $this->lng->txt("paya_coupons_coupon")." ".$this->coupon_obj->getTitle().": ".$this->lng->txt('paya_coupons_code_generation'));                         
                
                if ($view == "choice")
                {       
                        $this->tpl->touchBlock("code_choice");                  
                        
                        $this->tpl->setVariable("TXT_TYPE", $this->lng->txt('paya_coupons_generate_codes'));
                        $this->tpl->setVariable("TXT_AUTO", $this->lng->txt('paya_coupons_type_auto'));
                        $this->tpl->setVariable("TXT_SELF", $this->lng->txt('paya_coupons_type_self'));
                        $this->tpl->setVariable("TXT_NUMBER_OF_CODES", $this->lng->txt('paya_coupons_number_of_codes'));
                        $this->tpl->setVariable("TXT_LENGTH", $this->lng->txt('paya_coupons_code_length'));
                        $this->tpl->setVariable("TXT_CHARS", $this->lng->txt('paya_coupons_code_chars'));                       
                        
                        $this->tpl->setVariable("TYPE_".strtoupper(isset($_POST["generate"]["type"]) ? $_POST["generate"]["type"] : "auto"), " checked=\"checked\"");
                        $this->tpl->setVariable("LENGTH", ilUtil::prepareFormOutput($_POST["generate"]["length"] ? $_POST["generate"]["length"] : 12, true));
                        
                        $this->tpl->setVariable("TXT_REQUIRED_FIELDS", $this->lng->txt("required_field"));      
                }
                else if ($view == "input")
                {
                        $this->tpl->touchBlock("code_input");
                        
                        if (is_numeric($_POST["generate"]["number"]) && $_POST["generate"]["number"] > 0)
                        {
                                for ($i = 0; $i < $_POST["generate"]["number"]; $i++)
                                {
                                        $this->tpl->setCurrentBlock("loop");
                                        $this->tpl->setVariable("LOOP_CODE_INDEX", $i + 1);
                                        $this->tpl->parseCurrentBlock();
                                }
                        }
                }               
                
                $this->tpl->setVariable("TXT_SEND",$this->lng->txt('send'));
                
                $this->tpl->setVariable("IMPORT_ACTION", $this->ctrl->getFormAction($this));
                $this->tpl->setVariable("TXT_IMPORT",$this->lng->txt('import'));
                                        
                return true;
        }

Here is the call graph for this function:

Here is the caller graph for this function:

ilPaymentCouponGUI::ilPaymentCouponGUI ( &$  user_obj  ) 

Definition at line 12 of file class.ilPaymentCouponGUI.php.

References $ilCtrl, $user_obj, __initCouponObject(), and ilPaymentBaseGUI::ilPaymentBaseGUI().

        {
                global $ilCtrl;

                $this->ctrl =& $ilCtrl;
                $this->ctrl->saveParameter($this, 'baseClass');

                $this->ilPaymentBaseGUI();

                $this->user_obj =& $user_obj;           
                
                $this->__initCouponObject();
        }

Here is the call graph for this function:

ilPaymentCouponGUI::importCodes (  ) 

Definition at line 878 of file class.ilPaymentCouponGUI.php.

References $_GET, $data, ilUtil::sendInfo(), showCodeImport(), showCodes(), and ilUtil::stripSlashes().

        {       
                include_once('./Services/Utilities/classes/class.ilCSVReader.php');
                
                if ($_FILES["codesfile"]["tmp_name"] != "")
                {
                        $csv = new ilCSVReader();
                        $csv->setDelimiter("");
                        
                        if ($csv->open($_FILES["codesfile"]["tmp_name"]))
                        {               
                                $data = $csv->getDataArrayFromCSVFile();
                                
                                for ($i = 0; $i < count($data); $i++)
                                {
                                        for ($j = 0; $j < count($data[$i]); $j++)
                                        {
                                                $this->coupon_obj->addCode(ilUtil::stripSlashes($data[$i][$j]), $_GET["coupon_id"]);    
                                        }
                                }                               
                                
                                ilUtil::sendInfo($this->lng->txt("paya_coupon_codes_import_successful"));
                                
                                $this->showCodes();
                        }
                        else
                        {
                                ilUtil::sendInfo($this->lng->txt("paya_coupons_import_error_opening_file"));
                                
                                $this->showCodeImport();
                        }
                }
                else
                {
                        ilUtil::sendInfo($this->lng->txt("fill_out_all_required_fields"));
                        
                        $this->showCodeImport();                                        
                }
                
                return true;
        }

Here is the call graph for this function:

ilPaymentCouponGUI::performDeleteAllCodes (  ) 

Definition at line 342 of file class.ilPaymentCouponGUI.php.

References $_GET, and showCodes().

        {
                $this->coupon_obj->deleteAllCodesByCouponId($_GET['coupon_id']);        
                
                $this->showCodes();

                return true;
        }

Here is the call graph for this function:

ilPaymentCouponGUI::performDeleteCodes (  ) 

Definition at line 369 of file class.ilPaymentCouponGUI.php.

References $_SESSION, ilUtil::sendInfo(), and showCodes().

        {
                if (is_array($_SESSION['paya_delete_codes']))
                {                       
                        foreach($_SESSION['paya_delete_codes'] as $id)
                        {
                                $this->coupon_obj->deleteCode($id);
                        }
                }
                unset($_SESSION['paya_delete_codes']);
                ilUtil::sendInfo($this->lng->txt('paya_coupons_code_deleted_successfully'));
                
                $this->showCodes();

                return true;
        }

Here is the call graph for this function:

ilPaymentCouponGUI::resetFilter (  ) 

Definition at line 47 of file class.ilPaymentCouponGUI.php.

References showCoupons().

        {
                unset($_POST['title_type']);
                unset($_POST['title_value']);
                unset($_POST['type']);
                unset($_POST['from']['d']);
                unset($_POST['from']['m']);
                unset($_POST['from']['y']);
                unset($_POST['till']['d']);
                unset($_POST['till']['m']);
                unset($_POST['till']['y']);
                unset($_POST['from_enabled']);
                unset($_POST['till_enabled']);

                $this->showCoupons();
                
                return true;
        }

Here is the call graph for this function:

ilPaymentCouponGUI::saveCodeForm (  ) 

Definition at line 535 of file class.ilPaymentCouponGUI.php.

References $_GET, $_SESSION, __makeCode(), generateCodes(), ilUtil::sendInfo(), showCodes(), and ilUtil::stripSlashes().

        {
                if (isset($_POST["generate"]["length"])) $_SESSION["pay_coupons"]["code_length"] = $_POST["generate"]["length"];
                else $_POST["generate"]["length"] = $_SESSION["pay_coupons"]["code_length"];
                
                if (isset($_POST["generate"]["type"])) $_SESSION["pay_coupons"]["code_type"] = $_POST["generate"]["type"];
                else $_POST["generate"]["type"] = $_SESSION["pay_coupons"]["code_type"];
                
                if ($_POST["generate"]["type"] == "self")
                {
                        if ($_GET["coupon_id"] && is_array($_POST["codes"]))
                        {                               
                                $count_inserts = 0;
                                
                                for ($i = 0; $i < count($_POST["codes"]); $i++)
                                {
                                        $_POST["codes"][$i] = trim($_POST["codes"][$i]);
                                        
                                        if ($_POST["codes"][$i] != "")
                                        {                                       
                                                $code = $this->__makeCode($_POST["codes"][$i], $_SESSION["pay_coupons"]["code_length"]);
                                                
                                                if ($code != "")
                                                {
                                                        if ($this->coupon_obj->addCode(ilUtil::stripSlashes($code), $_GET["coupon_id"]))
                                                        {
                                                                ++$count_inserts;
                                                        }
                                                }
                                        }
                                }
                                
                                if ($count_inserts) 
                                {
                                        ilUtil::sendInfo($this->lng->txt("saved_successfully"));
                                        $this->showCodes();
                                }
                                else
                                {
                                        ilUtil::sendInfo($this->lng->txt("paya_coupons_no_codes_generated"));
                                        $this->generateCodes();
                                }                               
                        }
                        else if (!is_numeric($_POST["generate"]["number"]) ||  $_POST["generate"]["number"] <= 0)
                        {
                                ilUtil::sendInfo($this->lng->txt("fill_out_all_required_fields"));                                      
                                
                                $this->generateCodes(); 
                        }
                        else
                        {
                                $this->generateCodes("input");
                        }
                }
                else if ($_POST["generate"]["type"] == "auto")
                {
                        if ($_GET["coupon_id"] && is_numeric($_POST["generate"]["number"]) && $_POST["generate"]["number"] > 0)
                        {                               
                                for ($i = 0; $i < $_POST["generate"]["number"]; $i++)
                                {
                                        $code = $this->__makeCode("", $_SESSION["pay_coupons"]["code_length"]);
                                        
                                        if ($code != "")
                                        {
                                                $this->coupon_obj->addCode($code, $_GET["coupon_id"]);
                                        }
                                }
                                
                                ilUtil::sendInfo($this->lng->txt("saved_successfully"));
                                
                                $this->showCodes();                                     
                        }
                        else
                        {       
                                ilUtil::sendInfo($this->lng->txt("fill_out_all_required_fields"));                                      
                                
                                $this->generateCodes();
                        }
                }
        }

Here is the call graph for this function:

ilPaymentCouponGUI::saveCouponForm (  ) 

Definition at line 222 of file class.ilPaymentCouponGUI.php.

References $_GET, addCoupon(), ilFormat::checkDecimal(), ilUtil::sendInfo(), and ilUtil::stripSlashes().

        {
                $this->error = '';
                
                if ($_POST['title'] == '') $this->error .= 'paya_coupons_title,';
                if ($_POST['type'] == '') $this->error .= 'paya_coupons_type,';
                if ($_POST['value'] == '') $this->error .= 'paya_coupons_value,';
                else $_POST['value'] = ilFormat::checkDecimal($_POST['value']);         
                
                $this->coupon_obj->setId($_GET['coupon_id']);
                $this->coupon_obj->setCouponUser($this->user_obj->getId());
                $this->coupon_obj->setTitle(ilUtil::stripSlashes($_POST['title']));
                $this->coupon_obj->setDescription(ilUtil::stripSlashes($_POST['description']));                 
                $this->coupon_obj->setType(ilUtil::stripSlashes($_POST['type']));
                $this->coupon_obj->setValue(ilUtil::stripSlashes($_POST['value']));                     
                $this->coupon_obj->setFromDate(ilUtil::stripSlashes($_POST['from']['y']."-".$_POST['from']['m']."-".$_POST['from']['d']));
                $this->coupon_obj->setTillDate(ilUtil::stripSlashes($_POST['till']['y']."-".$_POST['till']['m']."-".$_POST['till']['d']));
                $this->coupon_obj->setFromDateEnabled(ilUtil::stripSlashes($_POST['pc_from_enabled']));
                $this->coupon_obj->setTillDateEnabled(ilUtil::stripSlashes($_POST['pc_till_enabled']));
                $this->coupon_obj->setUses(ilUtil::stripSlashes($_POST['usage']));                      
                $this->coupon_obj->setChangeDate(date('Y-m-d H:i:s'));                          
                
                if ($this->error == '')
                {               
                        if ($_GET['coupon_id'] != "")
                        {                                                               
                                $this->coupon_obj->update();
                        }
                        else
                        {
                                $_GET['coupon_id'] = $this->coupon_obj->add();                           
                        }
                        
                        ilUtil::sendInfo($this->lng->txt('saved_successfully'));
                }
                else
                {                       
                        if (is_array($e = explode(',', $this->error)))
                        {                               
                                $mandatory = '';
                                for ($i = 0; $i < count($e); $i++)
                                {
                                        $e[$i] = trim($e[$i]);
                                        if ($e[$i] != '')
                                        {
                                                $mandatory .= $this->lng->txt($e[$i]);
                                                if (array_key_exists($i + 1, $e) && $e[$i + 1] != '') $mandatory .= ', ';
                                        }
                                }
                                ilUtil::sendInfo($this->lng->txt('fill_out_all_required_fields') . ': ' . $mandatory);
                        }                       
                }               
                
                $this->addCoupon();
                
                return true;
        }

Here is the call graph for this function:

ilPaymentCouponGUI::showCodeImport (  ) 

Definition at line 920 of file class.ilPaymentCouponGUI.php.

References $_GET, __showButtons(), and ilUtil::stripSlashes().

Referenced by importCodes().

        {
                $this->ctrl->setParameter($this, 'coupon_id', $_GET['coupon_id']);
                $this->__showButtons();
                
                $this->coupon_obj->getCouponById(ilUtil::stripSlashes($_GET['coupon_id']));
                
                $this->tpl->addBlockfile('ADM_CONTENT','adm_content','tpl.paya_coupons_codes_import.html','payment');
                
                $this->tpl->setVariable('TXT_IMPORT_HINT', $this->lng->txt('import_use_only_textfile'));
                
                $this->tpl->setVariable("FORMACTION", $this->ctrl->getFormAction($this));               
                $this->tpl->setVariable("TXT_HEADLINE", $this->lng->txt("paya_coupons_coupon")." ".$this->coupon_obj->getTitle().": ".$this->lng->txt('paya_coupons_codes_import'));
                
                $this->tpl->setVariable("TXT_FILE",$this->lng->txt('file'));
                
                $this->tpl->setVariable("TXT_UPLOAD",$this->lng->txt('upload'));
                $this->tpl->setVariable("TXT_REQUIRED_FIELDS", $this->lng->txt("required_field"));
                
                return true;
        }

Here is the call graph for this function:

Here is the caller graph for this function:

ilPaymentCouponGUI::showCodes ( a_show_delete = ""  ) 

Definition at line 395 of file class.ilPaymentCouponGUI.php.

References $_GET, $_SESSION, $tbl, ilPaymentBaseGUI::$tpl, __showButtons(), ilUtil::formCheckbox(), generateCodes(), ilUtil::getImagePath(), ilPaymentBaseGUI::initTableGUI(), ilUtil::sendInfo(), and ilUtil::stripSlashes().

Referenced by cancelDelete(), deleteAllCodes(), deleteCodes(), exportCodes(), importCodes(), performDeleteAllCodes(), performDeleteCodes(), and saveCodeForm().

        {               
                $this->coupon_obj->setId($_GET['coupon_id']);
                
                if (!count($codes = $this->coupon_obj->getCodesByCouponId($_GET['coupon_id'])))
                {
                        ilUtil::sendInfo($this->lng->txt('paya_coupons_codes_not_available'));                  
                        
                        $this->generateCodes();                 
                        
                        return true;
                }               
                
                $this->coupon_obj->getCouponById(ilUtil::stripSlashes($_GET['coupon_id']));
                
                $this->ctrl->setParameter($this, 'coupon_id', $_GET['coupon_id']);              
                $this->__showButtons(); 
                
                $this->tpl->addBlockfile('ADM_CONTENT','adm_content','tpl.paya_coupons_codes.html','payment');  
                                
                if ($a_show_delete == "all")
                {
                        ilUtil::sendInfo($this->lng->txt('paya_coupons_sure_delete_all_codes'));
                        $this->tpl->setCurrentBlock("confirm_delete_all");
                        $this->tpl->setVariable("CONFIRM_ALL_FORMACTION",$this->ctrl->getFormAction($this));
                        $this->tpl->setVariable("TXT_CANCEL_ALL",$this->lng->txt('cancel'));
                        $this->tpl->setVariable("TXT_CONFIRM_ALL",$this->lng->txt('delete_all'));
                        $this->tpl->parseCurrentBlock();
                }
                if ($a_show_delete == "selected")
                {
                        ilUtil::sendInfo($this->lng->txt('paya_coupons_sure_delete_selected_codes'));
                        $this->tpl->setCurrentBlock("confirm_delete");
                        $this->tpl->setVariable("CONFIRM_FORMACTION",$this->ctrl->getFormAction($this));
                        $this->tpl->setVariable("TXT_CANCEL",$this->lng->txt('cancel'));
                        $this->tpl->setVariable("TXT_CONFIRM",$this->lng->txt('delete'));
                        $this->tpl->parseCurrentBlock();
                }               
                
                $_SESSION['paya_delete_codes'] = $_SESSION['paya_delete_codes'] ? $_SESSION['paya_delete_codes'] : array();
                
                $counter = 0;
                foreach ($codes as $code)
                {
                        $f_result[$counter][]   = ilUtil::formCheckbox(in_array($code['pcc_pk'], $_SESSION['paya_delete_codes']) ? 1 : 0,
                                                                                                                           "codes[]",
                                                                                                                           $code['pcc_pk']);
                        $f_result[$counter][] = $code['pcc_code'];
                        $f_result[$counter][] = $code['pcc_used']." ".strtolower($this->lng->txt('of'))." ".$this->coupon_obj->getUses();
                                                
                        ++$counter;
                }
                                                
                $tbl =& $this->initTableGUI();
                $tpl =& $tbl->getTemplateObject();
                
                
                
                $tpl->setCurrentBlock("tbl_form_header");               
                $tpl->setVariable("FORMACTION", $this->ctrl->getFormAction($this));
                $tpl->parseCurrentBlock();
                $tbl->setTitle($this->lng->txt("paya_coupons_coupon")." ".$this->coupon_obj->getTitle().": ".$this->lng->txt("paya_coupons_codes"), "icon_pays.gif", $this->lng->txt("paya_coupons_codes"));
                $tbl->setHeaderNames(array('', $this->lng->txt("paya_coupons_code"), $this->lng->txt('paya_coupons_usage_of_codes')));          
                $this->ctrl->setParameter($this, "cmd", "showCodes");
                $header_params = $this->ctrl->getParameterArray($this, '');
                $tbl->setHeaderVars(array('', 'pcc_code', 'paya_coupons_usage_of_codes'), $header_params);
                $offset = $_GET['offset'];
                $order = $_GET['sort_by'];
                $direction = $_GET['sort_order'] ? $_GET['sort_order'] : 'desc';
                $tbl->setOrderColumn($order,'pcc_code');
                $tbl->setOrderDirection($direction);
                $tbl->setOffset($offset);
                $tbl->setLimit($_GET['limit']);
                $tbl->setMaxCount(count($f_result));
                $tbl->setFooter('tblfooter', $this->lng->txt('previous'), $this->lng->txt('next'));
                $tbl->setData($f_result);
                $tpl->setVariable('COLUMN_COUNTS', 3);
                
                $tbl->enable('select_all');
                $tbl->setFormName('cmd');
                $tbl->setSelectAllCheckbox('codes');
                
                $tpl->setVariable("IMG_ARROW", ilUtil::getImagePath("arrow_downright.gif"));
                
                $tpl->setCurrentBlock("tbl_action_button");
                $tpl->setVariable("BTN_NAME","deleteCodes");
                $tpl->setVariable("BTN_VALUE",$this->lng->txt("delete"));
                $tpl->parseCurrentBlock();              
                                
                $tpl->setCurrentBlock('plain_button');
                $tpl->setVariable('PBTN_NAME', 'generateCodes');
                $tpl->setVariable('PBTN_VALUE', $this->lng->txt('paya_coupons_generate_codes'));
                $tpl->parseCurrentBlock();
                
                $tpl->setCurrentBlock('plain_button');
                $tpl->setVariable('PBTN_NAME', 'deleteAllCodes');
                $tpl->setVariable('PBTN_VALUE', $this->lng->txt('delete_all'));
                $tpl->parseCurrentBlock();              
                
                $tpl->setCurrentBlock("plain_button");
                $tpl->setVariable("PBTN_NAME","exportCodes");
                $tpl->setVariable("PBTN_VALUE",$this->lng->txt("export"));
                $tpl->parseCurrentBlock();
                                
                $tbl->setColumnWidth(array("10%","90%"));               
                $tbl->render();         

                $this->tpl->setVariable('CODES_TABLE', $tbl->tpl->get());               
                
                return true;
        }

Here is the call graph for this function:

Here is the caller graph for this function:

ilPaymentCouponGUI::showCoupons (  ) 

Definition at line 66 of file class.ilPaymentCouponGUI.php.

References $_SESSION, __showCouponsTable(), ilObjUser::_lookupLogin(), formatDate(), ilFormat::formatDate(), ilObjectFactory::getInstanceByRefId(), ilUtil::makeDateSelect(), ilUtil::prepareFormOutput(), ilUtil::sendInfo(), ilPaymentBaseGUI::showButton(), and ilUtil::stripSlashes().

Referenced by resetFilter().

        {
                include_once("Services/User/classes/class.ilObjUser.php");
                
                $this->showButton('addCoupon', $this->lng->txt('paya_coupons_add'));
                
                if ($_POST['updateView'] == '1')
                {                       
                        $_SESSION['pay_coupons']['title_type'] = $_POST['title_type'];
                        $_SESSION['pay_coupons']['title_value'] = $_POST['title_value'];
                        $_SESSION['pay_coupons']['type'] = $_POST['type'];                      
                        $_SESSION['pay_coupons']['from']['d'] = $_POST['from']['d'];
                        $_SESSION['pay_coupons']['from']['m'] = $_POST['from']['m'];
                        $_SESSION['pay_coupons']['from']['y'] = $_POST['from']['y'];
                        $_SESSION['pay_coupons']['till']['d'] = $_POST['till']['d'];
                        $_SESSION['pay_coupons']['till']['m'] = $_POST['till']['m'];
                        $_SESSION['pay_coupons']['till']['y'] = $_POST['till']['y'];
                        $_SESSION['pay_coupons']['from_enabled'] = $_POST['from_enabled'];
                        $_SESSION['pay_coupons']['till_enabled'] = $_POST['till_enabled'];              
                }
                
                $this->coupon_obj->setSearchTitleType(ilUtil::stripSlashes($_SESSION['pay_coupons']['title_type']));
                $this->coupon_obj->setSearchTitleValue(ilUtil::stripSlashes($_SESSION['pay_coupons']['title_value']));
                $this->coupon_obj->setSearchType(ilUtil::stripSlashes($_SESSION['pay_coupons']['type']));
                $this->coupon_obj->setSearchFromDay(ilUtil::stripSlashes($_SESSION['pay_coupons']['from']['d']));
                $this->coupon_obj->setSearchFromMonth(ilUtil::stripSlashes($_SESSION['pay_coupons']['from']['m']));
                $this->coupon_obj->setSearchFromYear(ilUtil::stripSlashes($_SESSION['pay_coupons']['from']['y']));
                $this->coupon_obj->setSearchTillDay(ilUtil::stripSlashes($_SESSION['pay_coupons']['till']['d']));
                $this->coupon_obj->setSearchTillMonth(ilUtil::stripSlashes($_SESSION['pay_coupons']['till']['m']));
                $this->coupon_obj->setSearchTillYear(ilUtil::stripSlashes($_SESSION['pay_coupons']['till']['y']));              
                $this->coupon_obj->setSearchFromDateEnabled(ilUtil::stripSlashes($_SESSION['pay_coupons']['from_enabled']));
                $this->coupon_obj->setSearchTillDateEnabled(ilUtil::stripSlashes($_SESSION['pay_coupons']['till_enabled']));
                
                
                $this->tpl->addBlockfile('ADM_CONTENT', 'adm_content', 'tpl.paya_coupons.html', 'payment');
                
                $this->tpl->setVariable("TXT_FILTER", $this->lng->txt('pay_filter'));
                $this->tpl->setVariable("FORMACTION", $this->ctrl->getFormAction($this));
                
                $this->tpl->setVariable("TXT_COUPON",$this->lng->txt('paya_coupons_title'));
                $this->tpl->setVariable("TXT_STARTING",$this->lng->txt('pay_starting'));
                $this->tpl->setVariable("TXT_ENDING",$this->lng->txt('pay_ending'));            
                $this->tpl->setVariable("TXT_TYPE",$this->lng->txt('paya_coupons_type'));
                $this->tpl->setVariable("TXT_TYPE_FIX",$this->lng->txt('paya_coupons_fix'));
                $this->tpl->setVariable("TXT_TYPE_PERCENTAGED",$this->lng->txt('paya_coupons_percentaged'));            
                $this->tpl->setVariable("TXT_VALID_DATE_FROM",$this->lng->txt('paya_coupons_from'));
                $this->tpl->setVariable("TXT_VALID_DATE_TILL",$this->lng->txt('paya_coupons_till'));
                $this->tpl->setVariable("TXT_UPDATE_VIEW",$this->lng->txt('pay_update_view'));
                $this->tpl->setVariable("TXT_RESET_FILTER",$this->lng->txt('pay_reset_filter'));                
                $this->tpl->setVariable('TXT_ENABLED', $this->lng->txt('enabled'));
                $this->tpl->setVariable("TITLE_TYPE_" . $this->coupon_obj->getSearchTitleType(), " selected=\"selected\"");
                $this->tpl->setVariable("TITLE_VALUE", ilUtil::prepareFormOutput($this->coupon_obj->getSearchTitleValue(), true));
                $this->tpl->setVariable("TYPE_" . strtoupper($this->coupon_obj->getSearchType()), " selected=\"selected\"");    
                                
                                
                if ($this->coupon_obj->getSearchFromDateEnabled()) $this->tpl->setVariable('CHECKED_STARTING_DATE', " checked=\"checked\"");
                if ($this->coupon_obj->getSearchTillDateEnabled()) $this->tpl->setVariable('CHECKED_ENDING_DATE', " checked=\"checked\"");
                $this->tpl->setVariable('DATE_FROM', ilUtil::makeDateSelect("from", $this->coupon_obj->getSearchFromYear(), $this->coupon_obj->getSearchFromMonth(), $this->coupon_obj->getSearchFromDay(), 2004, true, array("first_option_empty" => true)));
                $this->tpl->setVariable('DATE_TILL', ilUtil::makeDateSelect("till", $this->coupon_obj->getSearchTillYear(), $this->coupon_obj->getSearchTillMonth(), $this->coupon_obj->getSearchTillDay(), 2004, true, array("first_option_empty" => true)));
                
                if (!count($coupons = $this->coupon_obj->getCoupons()))
                {
                        ilUtil::sendInfo($this->lng->txt('paya_coupons_not_found'));
                        //if ($_POST['updateView'] == '1') ilUtil::sendInfo($this->lng->txt('paya_coupons_not_found'));
                        //else ilUtil::sendInfo($this->lng->txt('paya_coupons_not_available'));         
                        
                        return true;
                }               
                
                $counter = 0;
                foreach ($coupons as $coupon)
                {
                        $f_result[$counter][] = $coupon['pc_title'];
                        $f_result[$counter][] = $coupon['number_of_codes'];
                        $f_result[$counter][] = $coupon['usage_of_codes'];
                        
                        if (!empty($coupon['objects']))
                        {
                                $objects = "";
                                for ($i = 0; $i < count($coupon['objects']); $i++)
                                {
                                        $tmp_obj =& ilObjectFactory::getInstanceByRefId($coupon['objects'][$i]);
                                        $objects .= $tmp_obj->getTitle();
                                        
                                        if ($i < count($coupon['objects']) - 1) $objects .= "<br />";
                                        
                                        unset($tmp_obj);        
                                }                               
                        }
                        else
                        {
                                $objects = "";
                        }
                        
                        $f_result[$counter][] = $objects;                       
                        
                        
                        $f_result[$counter][] = ($coupon['pc_from'] != '0000-00-00' && $coupon['pc_from_enabled'] == '1') ? ilFormat::formatDate($coupon['pc_from'], 'date') : '';
                        $f_result[$counter][] = ($coupon['pc_till'] != '0000-00-00' && $coupon['pc_till_enabled'] == '1') ? ilFormat::formatDate($coupon['pc_till'], 'date') : '';
                        $f_result[$counter][] = 
                                ($coupon['pc_last_changed'] != '0000-00-00 00:00:00' ? ilFormat::formatDate($coupon['pc_last_changed']) : '') .
                                ($coupon['pc_last_change_usr_id'] != '0' ? "[" . ilObjUser::_lookupLogin($coupon['pc_last_change_usr_id']) . "]" : '');
                        $this->ctrl->setParameter($this, 'coupon_id',  $coupon['pc_pk']);
                        $f_result[$counter][] = "<div class=\"il_ContainerItemCommands\"><a class=\"il_ContainerItemCommand\" href=\"".$this->ctrl->getLinkTarget($this, "addCoupon")."\">".$this->lng->txt("edit")."</a></div>";
                                        
                        ++$counter;
                }
                
                return $this->__showCouponsTable($f_result);
        }

Here is the call graph for this function:

Here is the caller graph for this function:

ilPaymentCouponGUI::showObjects (  ) 

Definition at line 719 of file class.ilPaymentCouponGUI.php.

References $_GET, $data, $tbl, ilPaymentBaseGUI::$tpl, __initPaymentObject(), __showButtons(), ilUtil::formCheckbox(), ilUtil::getImagePath(), ilObjectFactory::getInstanceByRefId(), ilPaymentBaseGUI::initTableGUI(), and ilUtil::stripSlashes().

Referenced by assignObjects(), and unassignObjects().

        {
                $this->coupon_obj->setId($_GET['coupon_id']);
                
                $this->__initPaymentObject();           
                
                $this->ctrl->setParameter($this, 'coupon_id', $_GET['coupon_id']);
                $this->__showButtons();
                
                $this->tpl->addBlockfile('ADM_CONTENT','adm_content','tpl.paya_coupons_objects.html','payment');                
                                                
                $objects = $this->pobject->_getObjectsData($this->user_obj->getId());
                
                $this->coupon_obj->getCouponById(ilUtil::stripSlashes($_GET['coupon_id']));
                                
                $counter_assigned = 0;
                $counter_unassigned = 0;
                $f_result_assigned = array();
                $f_result_unassigned = array();
                foreach($objects as $data)
                {                                       
                        if ($this->coupon_obj->isObjectAssignedToCoupon($data['ref_id']))
                        {
                                $p_counter =& $counter_assigned;
                                $p_result =& $f_result_assigned;
                        }
                        else
                        {
                                $p_counter =& $counter_unassigned;
                                $p_result =& $f_result_unassigned;
                        }
                        
                        $tmp_obj =& ilObjectFactory::getInstanceByRefId($data['ref_id']);
                        
                        $p_result[$p_counter][] = ilUtil::formCheckbox(0, 'objects[]', $data['ref_id']);                        
                        $p_result[$p_counter][] = $tmp_obj->getTitle();
                        switch($data['status'])
                        {
                                case $this->pobject->STATUS_BUYABLE:
                                        $p_result[$p_counter][] = $this->lng->txt('paya_buyable');
                                        break;

                                case $this->pobject->STATUS_NOT_BUYABLE:
                                        $p_result[$p_counter][] = $this->lng->txt('paya_not_buyable');
                                        break;
                                        
                                case $this->pobject->STATUS_EXPIRES:
                                        $p_result[$p_counter][] = $this->lng->txt('paya_expires');
                                        break;
                        }
                        switch($data['pay_method'])
                        {
                                case $this->pobject->PAY_METHOD_NOT_SPECIFIED:
                                        $p_result[$p_counter][] = $this->lng->txt('paya_pay_method_not_specified');
                                        break;

                                case $this->pobject->PAY_METHOD_BILL:
                                        $p_result[$p_counter][] = $this->lng->txt('pays_bill');
                                        break;

                                case $this->pobject->PAY_METHOD_BMF:
                                        $p_result[$p_counter][] = $this->lng->txt('pays_bmf');
                                        break;

                                case $this->pobject->PAY_METHOD_PAYPAL:
                                        $p_result[$p_counter][] = $this->lng->txt('pays_paypal');
                                        break;
                        }
                        
                        ++$p_counter;                           
                                                        
                        unset($tmp_obj);                        
                }
                
                $this->ctrl->setParameter($this, "cmd", "showObjects");
                
                if (count($f_result_assigned) > 0)
                {               
                        $tbl =& $this->initTableGUI();
                        $tpl =& $tbl->getTemplateObject();
                        $tbl->setPrefix('assigned');
                        
                        $tpl->setCurrentBlock("tbl_form_header");               
                        $tpl->setVariable("FORMACTION", $this->ctrl->getFormAction($this));
                        $tpl->parseCurrentBlock();      
                        $tbl->setTitle($this->lng->txt("paya_coupons_coupon")." ".$this->coupon_obj->getTitle().": ".$this->lng->txt("paya_coupons_assigned_objects"),"icon_pays.gif",$this->lng->txt("paya_coupons_assigned_objects"));
                        $tbl->setHeaderNames(array("", 
                                                                           $this->lng->txt("title"),
                                                                           $this->lng->txt("status"),
                                                                           $this->lng->txt("paya_pay_method")));
                        $header_params = $this->ctrl->getParameterArray($this,'');
                        $tbl->setHeaderVars(array("", 
                                                                          "title",
                                                                          "status",
                                                                          "pay_method"),$header_params);                
                        $offset = $_GET['assignedoffset'];
                        $order = $_GET['assignedsort_by'];
                        $direction = $_GET['assignedsort_order'] ? $_GET['assignedsort_order'] : 'desc';                
                        $tbl->setOrderColumn($order,'title');
                        $tbl->setOrderDirection($direction);
                        $tbl->setOffset($offset);
                        $tbl->setLimit($_GET['limit']);
                        $tbl->setMaxCount(count($f_result_assigned));
                        $tbl->setFooter('tblfooter', $this->lng->txt('previous'), $this->lng->txt('next'));
                        $tbl->setData($f_result_assigned);                                                                
                        $tpl->setVariable('COLUMN_COUNTS', 4);          
                        $tpl->setVariable("IMG_ARROW", ilUtil::getImagePath("arrow_downright.gif"));            
                        $tpl->setCurrentBlock("tbl_action_button");
                        $tpl->setVariable("BTN_NAME","unassignObjects");
                        $tpl->setVariable("BTN_VALUE",$this->lng->txt("remove"));
                        $tpl->parseCurrentBlock();                                              
                        $tbl->setColumnWidth(array("10%","20%","20%","20%"));                   
                        $tbl->render();
                        
                        $this->tpl->setVariable('LINKED_OBJECTS_TABLE', $tbl->tpl->get());
                }
                
                if (count($f_result_unassigned) > 0)
                {               
                        $tbl =& $this->initTableGUI();
                        $tpl =& $tbl->getTemplateObject();
                        $tpl->setCurrentBlock("tbl_form_header");               
                        $tpl->setVariable("FORMACTION", $this->ctrl->getFormAction($this));
                        $tpl->parseCurrentBlock();      
                        $tbl->setTitle($this->lng->txt("paya_coupons_coupon")." ".$this->coupon_obj->getTitle().": ".$this->lng->txt("paya_coupons_unassigned_objects"),"icon_pays.gif",$this->lng->txt("paya_coupons_unassigned_objects"));
                        $tbl->setHeaderNames(array("", 
                                                                           $this->lng->txt("title"),
                                                                           $this->lng->txt("status"),
                                                                           $this->lng->txt("paya_pay_method")));
                        $header_params = $this->ctrl->getParameterArray($this,'');
                        $tbl->setHeaderVars(array("", 
                                                                          "title_ua",
                                                                          "status_ua",
                                                                          "pay_method_ua"),$header_params);             
                        $offset = $_GET['offset'];
                        $order = $_GET['sort_by'];
                        $direction = $_GET['sort_order'] ? $_GET['sort_order'] : 'desc';                
                        $tbl->setOrderColumn($order,'title_ua');
                        $tbl->setOrderDirection($direction);
                        $tbl->setOffset($offset);
                        $tbl->setLimit($_GET['limit']);
                        $tbl->setMaxCount(count($f_result_unassigned));
                        $tbl->setFooter('tblfooter', $this->lng->txt('previous'), $this->lng->txt('next'));
                        $tbl->setData($f_result_unassigned);                                                              
                        $tpl->setVariable('COLUMN_COUNTS', 4);          
                        $tpl->setVariable("IMG_ARROW", ilUtil::getImagePath("arrow_downright.gif"));            
                        $tpl->setCurrentBlock("tbl_action_button");
                        $tpl->setVariable("BTN_NAME","assignObjects");
                        $tpl->setVariable("BTN_VALUE",$this->lng->txt("add"));
                        $tpl->parseCurrentBlock();                                              
                        $tbl->setColumnWidth(array("10%","20%","20%","20%"));                   
                        $tbl->render();         
        
                        $this->tpl->setVariable('UNLINKED_OBJECTS_TABLE', $tbl->tpl->get());
                }
                
                return true;
        }

Here is the call graph for this function:

Here is the caller graph for this function:

ilPaymentCouponGUI::unassignObjects (  ) 

Definition at line 700 of file class.ilPaymentCouponGUI.php.

References $_GET, and showObjects().

        {
                if (is_array($_POST['objects']))
                {                       
                        $this->coupon_obj->setId($_GET["coupon_id"]);                           
                        foreach($_POST['objects'] as $id)
                        {                                                       
                                if ($id)
                                {
                                        $this->coupon_obj->unassignObjectFromCoupon($id);
                                }
                        }                       
                }
                
                $this->showObjects();
                
                return true;
        }

Here is the call graph for this function:


Field Documentation

ilPaymentCouponGUI::$coupon_obj = null

Definition at line 9 of file class.ilPaymentCouponGUI.php.

ilPaymentCouponGUI::$ctrl

Definition at line 4 of file class.ilPaymentCouponGUI.php.

ilPaymentCouponGUI::$lng

Reimplemented from ilPaymentBaseGUI.

Definition at line 6 of file class.ilPaymentCouponGUI.php.

ilPaymentCouponGUI::$pobject = null

Definition at line 10 of file class.ilPaymentCouponGUI.php.

ilPaymentCouponGUI::$user_obj = null

Reimplemented from ilPaymentBaseGUI.

Definition at line 8 of file class.ilPaymentCouponGUI.php.

Referenced by ilPaymentCouponGUI().


The documentation for this class was generated from the following file: