source: branches/1.2/workflow/inc/local/functions/function.wf_set_generic_select.php @ 1349

Revision 1349, 530 bytes checked in by niltonneto, 15 years ago (diff)

Ticket #561 - Inclusão do módulo Workflow faltante nessa versão.

  • Property svn:executable set to *
Line 
1<?php
2/**
3 * Creates a picker interface based on the items supplied.
4 * @param string $items Picker options.
5 * @param string $containerNumber Identification for retrieving the menu.
6 * @return void
7 * @license http://www.gnu.org/copyleft/gpl.html GPL
8 * @package Workflow
9 * @subpackage local
10 * @access public
11 */
12function wf_set_generic_select($items, $containerNumber = 0)
13{
14        $sessionSection = "generic_select";
15        $digest = md5($_SERVER['REQUEST_URI']);
16        $_SESSION[$sessionSection][$digest][$containerNumber] = $items;
17}
18?>
Note: See TracBrowser for help on using the repository browser.