*** empty log message ***
This commit is contained in:
parent
30ebbfd1d4
commit
fd7d616a61
|
@ -1,113 +0,0 @@
|
|||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
|
||||
<html><head><meta http-equiv="Content-Type" content="text/html;charset=iso-8859-1">
|
||||
<title>LiveSupport&nbsp;-&nbsp;htmlUI&nbsp;module: SmartyDynamic_example.php Source File</title>
|
||||
<link href="doxygen.css" rel="stylesheet" type="text/css">
|
||||
</head><body>
|
||||
<!-- Generated by Doxygen 1.4.0 -->
|
||||
<div class="qindex"><a class="qindex" href="index.html">Main Page</a> | <a class="qindex" href="hierarchy.html">Class Hierarchy</a> | <a class="qindex" href="classes.html">Alphabetical List</a> | <a class="qindex" href="annotated.html">Class List</a> | <a class="qindex" href="dirs.html">Directories</a> | <a class="qindex" href="files.html">File List</a> | <a class="qindex" href="functions.html">Class Members</a> | <a class="qindex" href="globals.html">File Members</a></div>
|
||||
<div class="nav">
|
||||
<a class="el" href="dir_000000.html">var</a> / <a class="el" href="dir_000001.html">html</a></div>
|
||||
<h1>SmartyDynamic_example.php</h1><a href="SmartyDynamic__example_8php.html">Go to the documentation of this file.</a><div class="fragment"><pre class="fragment">00001 <?php
|
||||
00011 require_once 'HTML/QuickForm.php';
|
||||
00012 require_once 'HTML/QuickForm/Renderer/Array.php';
|
||||
00013 <span class="comment">// fix this if your Smarty is somewhere else</span>
|
||||
00014 require_once 'Smarty/libs/Smarty.class.php';
|
||||
00015
|
||||
<a name="l00016"></a><a class="code" href="SmartyDynamic__example_8php.html#a0">00016</a> <a class="code" href="SmartyDynamic__example_8php.html#a0">$form</a> = <span class="keyword">new</span> HTML_QuickForm('frmTest', 'post');
|
||||
00017
|
||||
00018 <a class="code" href="SmartyDynamic__example_8php.html#a0">$form</a>->setDefaults(array(
|
||||
00019 'itxtTest' => 'Test Text Box',
|
||||
00020 'itxaTest' => 'Hello World',
|
||||
00021 'iselTest' => array(<span class="charliteral">'B'</span>, <span class="charliteral">'C'</span>),
|
||||
00022 'name' => array('first' => 'Thomas', 'last' => 'Schulz'),
|
||||
00023 'iradYesNo' => <span class="charliteral">'Y'</span>,
|
||||
00024 'ichkABCD' => array(<span class="charliteral">'A'</span>=><span class="keyword">true</span>,<span class="charliteral">'D'</span>=><span class="keyword">true</span>)
|
||||
00025 ));
|
||||
00026
|
||||
00027 <a class="code" href="SmartyDynamic__example_8php.html#a0">$form</a>->addElement('header', '', 'Normal Elements');
|
||||
00028
|
||||
00029 <a class="code" href="SmartyDynamic__example_8php.html#a0">$form</a>->addElement('hidden', 'ihidTest', 'hiddenField');
|
||||
00030
|
||||
00031 <a class="code" href="SmartyDynamic__example_8php.html#a0">$form</a>->addElement('text', 'itxtTest', array('Test Text', 'note' => 'Note <span class="keywordflow">for</span> Testtext element.'));
|
||||
00032
|
||||
00033 <a class="code" href="SmartyDynamic__example_8php.html#a0">$form</a>->addElement('textarea', 'itxaTest', 'Test TextArea', 'cols=<span class="stringliteral">"40"</span> rows=<span class="stringliteral">"2"</span>');
|
||||
00034
|
||||
00035 <span class="comment">// will be later assigned to style green</span>
|
||||
00036 <a class="code" href="SmartyDynamic__example_8php.html#a0">$form</a>->addElement('password', 'ipwdTest', 'Test Password');
|
||||
<a name="l00037"></a><a class="code" href="SmartyDynamic__example_8php.html#a1">00037</a> <a class="code" href="SmartyDynamic__example_8php.html#a1">$select</a> =& <a class="code" href="SmartyDynamic__example_8php.html#a0">$form</a>->addElement(
|
||||
00038 'select',
|
||||
00039 'iselTest',
|
||||
00040 array('Test Select', 'note' => 'We recommend to check at least two categories!'),
|
||||
00041 array(<span class="charliteral">'A'</span>=>'A * * * * (luxory)', <span class="charliteral">'B'</span>=>'B * * *<span class="charliteral">','</span>C'=>'C * *<span class="charliteral">','</span>D'=>'D * (simple)')
|
||||
00042 );
|
||||
00043 <a class="code" href="SmartyDynamic__example_8php.html#a1">$select</a>->setSize(4);
|
||||
00044 <a class="code" href="SmartyDynamic__example_8php.html#a1">$select</a>->setMultiple(<span class="keyword">true</span>);
|
||||
00045
|
||||
00046 <a class="code" href="SmartyDynamic__example_8php.html#a0">$form</a>->addElement('submit', 'isubTest', 'Test Submit');
|
||||
00047
|
||||
00048 <a class="code" href="SmartyDynamic__example_8php.html#a0">$form</a>->addElement('header', '', 'Grouped Elements');
|
||||
00049
|
||||
00050 <a class="code" href="SmartyDynamic__example_8php.html#a2">$checkbox</a>[] = &HTML_QuickForm::createElement('checkbox', <span class="charliteral">'A'</span>, null, <span class="charliteral">'A'</span>);
|
||||
00051 <a class="code" href="SmartyDynamic__example_8php.html#a2">$checkbox</a>[] = &HTML_QuickForm::createElement('checkbox', <span class="charliteral">'B'</span>, null, <span class="charliteral">'B'</span>);
|
||||
00052 <a class="code" href="SmartyDynamic__example_8php.html#a2">$checkbox</a>[] = &HTML_QuickForm::createElement('checkbox', <span class="charliteral">'C'</span>, null, <span class="charliteral">'C'</span>);
|
||||
<a name="l00053"></a><a class="code" href="SmartyDynamic__example_8php.html#a2">00053</a> <a class="code" href="SmartyDynamic__example_8php.html#a2">$checkbox</a>[] = &HTML_QuickForm::createElement('checkbox', <span class="charliteral">'D'</span>, null, <span class="charliteral">'D'</span>);
|
||||
00054 <a class="code" href="SmartyDynamic__example_8php.html#a0">$form</a>->addGroup($checkbox, 'ichkABCD', 'ABCD', array('&nbsp;', '<br />'));
|
||||
00055
|
||||
00056 <span class="comment">// will be later assigned to style fancygroup</span>
|
||||
00057 <a class="code" href="SmartyDynamic__example_8php.html#a3">$radio</a>[] = &HTML_QuickForm::createElement('radio', null, null, 'Yes', <span class="charliteral">'Y'</span>);
|
||||
<a name="l00058"></a><a class="code" href="SmartyDynamic__example_8php.html#a3">00058</a> <a class="code" href="SmartyDynamic__example_8php.html#a3">$radio</a>[] = &HTML_QuickForm::createElement('radio', null, null, 'No', <span class="charliteral">'N'</span>);
|
||||
00059 <a class="code" href="SmartyDynamic__example_8php.html#a0">$form</a>->addGroup($radio, 'iradYesNo', 'Yes/No');
|
||||
00060
|
||||
00061 <span class="comment">// will be later assigned to style fancygroup</span>
|
||||
00062 <a class="code" href="SmartyDynamic__example_8php.html#a4">$name</a>['first'] = &HTML_QuickForm::createElement('text', 'first', 'First:');
|
||||
00063 <a class="code" href="SmartyDynamic__example_8php.html#a4">$name</a>['first']->setSize(20);
|
||||
<a name="l00064"></a><a class="code" href="SmartyDynamic__example_8php.html#a4">00064</a> <a class="code" href="SmartyDynamic__example_8php.html#a4">$name</a>['last'] = &HTML_QuickForm::createElement('text', 'last', 'Last:');
|
||||
00065 <a class="code" href="SmartyDynamic__example_8php.html#a4">$name</a>['last']->setSize(30);
|
||||
00066 <a class="code" href="SmartyDynamic__example_8php.html#a0">$form</a>->addGroup($name, 'name', 'Name');
|
||||
00067
|
||||
00068 <span class="comment">// add some 'required' rules to show "stars" and (possible) errors...</span>
|
||||
00069 <a class="code" href="SmartyDynamic__example_8php.html#a0">$form</a>->addRule('itxtTest', 'Test Text is a required field', 'required');
|
||||
00070 <a class="code" href="SmartyDynamic__example_8php.html#a0">$form</a>->addRule('itxaTest', 'Test TextArea is a required field', 'required');
|
||||
00071 <a class="code" href="SmartyDynamic__example_8php.html#a0">$form</a>->addGroupRule('iradYesNo', 'Check Yes or No', 'required');
|
||||
00072 <a class="code" href="SmartyDynamic__example_8php.html#a0">$form</a>->addGroupRule('name', array('last' => array(array('Last name is required', 'required'))));
|
||||
00073
|
||||
00074 <span class="comment">// try to validate the form</span>
|
||||
00075 <span class="keywordflow">if</span> ($form->validate()) {
|
||||
00076 <a class="code" href="SmartyDynamic__example_8php.html#a0">$form</a>->freeze();
|
||||
00077 }
|
||||
00078
|
||||
<a name="l00079"></a><a class="code" href="SmartyDynamic__example_8php.html#a5">00079</a> <a class="code" href="SmartyDynamic__example_8php.html#a5">$renderer</a> =& <span class="keyword">new</span> HTML_QuickForm_Renderer_Array(<span class="keyword">true</span>, <span class="keyword">true</span>);
|
||||
00080
|
||||
00081 <span class="comment">// give some elements aditional style informations</span>
|
||||
00082 <a class="code" href="SmartyDynamic__example_8php.html#a5">$renderer</a>->setElementStyle(array(
|
||||
00083 'ipwdTest' => 'green',
|
||||
00084 'iradYesNo' => 'fancygroup',
|
||||
00085 'name' => 'fancygroup'
|
||||
00086 ));
|
||||
00087
|
||||
00088 <a class="code" href="SmartyDynamic__example_8php.html#a0">$form</a>->accept($renderer);
|
||||
00089
|
||||
00090 <span class="comment">// setup a template object</span>
|
||||
<a name="l00091"></a><a class="code" href="SmartyDynamic__example_8php.html#a6">00091</a> <a class="code" href="SmartyDynamic__example_8php.html#a6">$tpl</a> =& <span class="keyword">new</span> Smarty;
|
||||
<a name="l00092"></a><a class="code" href="SmartyDynamic__example_8php.html#a7">00092</a> <a class="code" href="SmartyDynamic__example_8php.html#a6">$tpl</a>->template_dir = './templates';
|
||||
<a name="l00093"></a><a class="code" href="SmartyDynamic__example_8php.html#a8">00093</a> <a class="code" href="SmartyDynamic__example_8php.html#a6">$tpl</a>->compile_dir = './templates_c';
|
||||
00094
|
||||
00095 <span class="comment">// assign array with form data</span>
|
||||
00096 <a class="code" href="SmartyDynamic__example_8php.html#a6">$tpl</a>->assign('form', $renderer->toArray());
|
||||
00097
|
||||
00098 <span class="comment">// capture the array stucture</span>
|
||||
00099 <span class="comment">// (only for showing in sample template)</span>
|
||||
00100 ob_start();
|
||||
00101 print_r($renderer->toArray());
|
||||
00102 <a class="code" href="SmartyDynamic__example_8php.html#a6">$tpl</a>->assign('dynamic_array', ob_get_contents());
|
||||
00103 ob_end_clean();
|
||||
00104
|
||||
00105 <span class="comment">// render and display the template</span>
|
||||
00106 <a class="code" href="SmartyDynamic__example_8php.html#a6">$tpl</a>->display('smarty-dynamic.tpl');
|
||||
00107
|
||||
00108 ?>
|
||||
</pre></div><hr size="1"><address style="align: right;"><small>Generated on Wed Jan 12 13:58:47 2005 for LiveSupport - htmlUI module by
|
||||
<a href="http://www.doxygen.org/index.html">
|
||||
<img src="doxygen.png" alt="doxygen" align="middle" border="0"></a> 1.4.0 </small></address>
|
||||
</body>
|
||||
</html>
|
|
@ -1,276 +0,0 @@
|
|||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
|
||||
<html><head><meta http-equiv="Content-Type" content="text/html;charset=iso-8859-1">
|
||||
<title>LiveSupport&nbsp;-&nbsp;htmlUI&nbsp;module: SmartyDynamic_example.php File Reference</title>
|
||||
<link href="doxygen.css" rel="stylesheet" type="text/css">
|
||||
</head><body>
|
||||
<!-- Generated by Doxygen 1.4.0 -->
|
||||
<div class="qindex"><a class="qindex" href="index.html">Main Page</a> | <a class="qindex" href="hierarchy.html">Class Hierarchy</a> | <a class="qindex" href="classes.html">Alphabetical List</a> | <a class="qindex" href="annotated.html">Class List</a> | <a class="qindex" href="dirs.html">Directories</a> | <a class="qindex" href="files.html">File List</a> | <a class="qindex" href="functions.html">Class Members</a> | <a class="qindex" href="globals.html">File Members</a></div>
|
||||
<div class="nav">
|
||||
<a class="el" href="dir_000000.html">var</a> / <a class="el" href="dir_000001.html">html</a></div>
|
||||
<h1>SmartyDynamic_example.php File Reference</h1>
|
||||
<p>
|
||||
<a href="SmartyDynamic__example_8php-source.html">Go to the source code of this file.</a><table border="0" cellpadding="0" cellspacing="0">
|
||||
<tr><td></td></tr>
|
||||
<tr><td colspan="2"><br><h2>Variables</h2></td></tr>
|
||||
<tr><td class="memItemLeft" nowrap align="right" valign="top"> </td><td class="memItemRight" valign="bottom"><a class="el" href="SmartyDynamic__example_8php.html#a0">$form</a> = new HTML_QuickForm('frmTest', 'post')</td></tr>
|
||||
|
||||
<tr><td class="memItemLeft" nowrap align="right" valign="top"> </td><td class="memItemRight" valign="bottom"><a class="el" href="SmartyDynamic__example_8php.html#a1">$select</a></td></tr>
|
||||
|
||||
<tr><td class="memItemLeft" nowrap align="right" valign="top"> </td><td class="memItemRight" valign="bottom"><a class="el" href="SmartyDynamic__example_8php.html#a2">$checkbox</a> [] = &HTML_QuickForm::createElement('checkbox', 'A', null, 'A')</td></tr>
|
||||
|
||||
<tr><td class="memItemLeft" nowrap align="right" valign="top"> </td><td class="memItemRight" valign="bottom"><a class="el" href="SmartyDynamic__example_8php.html#a3">$radio</a> [] = &HTML_QuickForm::createElement('radio', null, null, 'Yes', 'Y')</td></tr>
|
||||
|
||||
<tr><td class="memItemLeft" nowrap align="right" valign="top"> </td><td class="memItemRight" valign="bottom"><a class="el" href="SmartyDynamic__example_8php.html#a4">$name</a> ['first'] = &HTML_QuickForm::createElement('text', 'first', 'First:')</td></tr>
|
||||
|
||||
<tr><td class="memItemLeft" nowrap align="right" valign="top"> </td><td class="memItemRight" valign="bottom"><a class="el" href="SmartyDynamic__example_8php.html#a5">$renderer</a> = & new HTML_QuickForm_Renderer_Array(true, true)</td></tr>
|
||||
|
||||
<tr><td class="memItemLeft" nowrap align="right" valign="top"> </td><td class="memItemRight" valign="bottom"><a class="el" href="SmartyDynamic__example_8php.html#a6">$tpl</a> = & new Smarty</td></tr>
|
||||
|
||||
<tr><td class="memItemLeft" nowrap align="right" valign="top">$tpl </td><td class="memItemRight" valign="bottom"><a class="el" href="SmartyDynamic__example_8php.html#a7">template_dir</a> = './templates'</td></tr>
|
||||
|
||||
<tr><td class="memItemLeft" nowrap align="right" valign="top">$tpl </td><td class="memItemRight" valign="bottom"><a class="el" href="SmartyDynamic__example_8php.html#a8">compile_dir</a> = './templates_c'</td></tr>
|
||||
|
||||
</table>
|
||||
<hr><h2>Variable Documentation</h2>
|
||||
<a class="anchor" name="a2" doxytag="SmartyDynamic_example.php::$checkbox"></a><p>
|
||||
<table class="mdTable" cellpadding="2" cellspacing="0">
|
||||
<tr>
|
||||
<td class="mdRow">
|
||||
<table cellpadding="0" cellspacing="0" border="0">
|
||||
<tr>
|
||||
<td class="md" nowrap valign="top">$checkbox[] = &HTML_QuickForm::createElement('checkbox', 'A', null, 'A') </td>
|
||||
</tr>
|
||||
</table>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
<table cellspacing="5" cellpadding="0" border="0">
|
||||
<tr>
|
||||
<td>
|
||||
|
||||
</td>
|
||||
<td>
|
||||
|
||||
<p>
|
||||
|
||||
<p>
|
||||
Definition at line <a class="el" href="SmartyDynamic__example_8php-source.html#l00053">53</a> of file <a class="el" href="SmartyDynamic__example_8php-source.html">SmartyDynamic_example.php</a>. </td>
|
||||
</tr>
|
||||
</table>
|
||||
<a class="anchor" name="a0" doxytag="SmartyDynamic_example.php::$form"></a><p>
|
||||
<table class="mdTable" cellpadding="2" cellspacing="0">
|
||||
<tr>
|
||||
<td class="mdRow">
|
||||
<table cellpadding="0" cellspacing="0" border="0">
|
||||
<tr>
|
||||
<td class="md" nowrap valign="top">$form = new HTML_QuickForm('frmTest', 'post') </td>
|
||||
</tr>
|
||||
</table>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
<table cellspacing="5" cellpadding="0" border="0">
|
||||
<tr>
|
||||
<td>
|
||||
|
||||
</td>
|
||||
<td>
|
||||
|
||||
<p>
|
||||
|
||||
<p>
|
||||
Definition at line <a class="el" href="SmartyDynamic__example_8php-source.html#l00016">16</a> of file <a class="el" href="SmartyDynamic__example_8php-source.html">SmartyDynamic_example.php</a>.
|
||||
<p>
|
||||
Referenced by <a class="el" href="ui__base_8inc_8php-source.html#l00045">uiBase::_parseArr2Form()</a>, <a class="el" href="ui__handler_8class_8php-source.html#l00433">uiHandler::_validateForm()</a>, <a class="el" href="ui__browser_8class_8php-source.html#l00193">uiBrowser::getAddSubjectForm()</a>, <a class="el" href="ui__browser_8class_8php-source.html#l00214">uiBrowser::getChangePasswdForm()</a>, <a class="el" href="ui__browser_8class_8php-source.html#l00402">uiBrowser::getMetadataForm()</a>, <a class="el" href="ui__browser_8class_8php-source.html#l00139">uiBrowser::getNewFileForm()</a>, <a class="el" href="ui__browser_8class_8php-source.html#l00160">uiBrowser::getSearchForm()</a>, <a class="el" href="ui__browser_8class_8php-source.html#l00262">uiBrowser::getSubj2GroupForm()</a>, <a class="el" href="ui__browser_8class_8php-source.html#l00057">uiBrowser::loginform()</a>, and <a class="el" href="ui__browser_8class_8php-source.html#l00416">uiBrowser::systemPrefs()</a>. </td>
|
||||
</tr>
|
||||
</table>
|
||||
<a class="anchor" name="a4" doxytag="SmartyDynamic_example.php::$name"></a><p>
|
||||
<table class="mdTable" cellpadding="2" cellspacing="0">
|
||||
<tr>
|
||||
<td class="mdRow">
|
||||
<table cellpadding="0" cellspacing="0" border="0">
|
||||
<tr>
|
||||
<td class="md" nowrap valign="top">$name['last'] = &HTML_QuickForm::createElement('text', 'first', 'First:') </td>
|
||||
</tr>
|
||||
</table>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
<table cellspacing="5" cellpadding="0" border="0">
|
||||
<tr>
|
||||
<td>
|
||||
|
||||
</td>
|
||||
<td>
|
||||
|
||||
<p>
|
||||
|
||||
<p>
|
||||
Definition at line <a class="el" href="SmartyDynamic__example_8php-source.html#l00064">64</a> of file <a class="el" href="SmartyDynamic__example_8php-source.html">SmartyDynamic_example.php</a>. </td>
|
||||
</tr>
|
||||
</table>
|
||||
<a class="anchor" name="a3" doxytag="SmartyDynamic_example.php::$radio"></a><p>
|
||||
<table class="mdTable" cellpadding="2" cellspacing="0">
|
||||
<tr>
|
||||
<td class="mdRow">
|
||||
<table cellpadding="0" cellspacing="0" border="0">
|
||||
<tr>
|
||||
<td class="md" nowrap valign="top">$radio[] = &HTML_QuickForm::createElement('radio', null, null, 'Yes', 'Y') </td>
|
||||
</tr>
|
||||
</table>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
<table cellspacing="5" cellpadding="0" border="0">
|
||||
<tr>
|
||||
<td>
|
||||
|
||||
</td>
|
||||
<td>
|
||||
|
||||
<p>
|
||||
|
||||
<p>
|
||||
Definition at line <a class="el" href="SmartyDynamic__example_8php-source.html#l00058">58</a> of file <a class="el" href="SmartyDynamic__example_8php-source.html">SmartyDynamic_example.php</a>.
|
||||
<p>
|
||||
Referenced by <a class="el" href="ui__base_8inc_8php-source.html#l00045">uiBase::_parseArr2Form()</a>. </td>
|
||||
</tr>
|
||||
</table>
|
||||
<a class="anchor" name="a5" doxytag="SmartyDynamic_example.php::$renderer"></a><p>
|
||||
<table class="mdTable" cellpadding="2" cellspacing="0">
|
||||
<tr>
|
||||
<td class="mdRow">
|
||||
<table cellpadding="0" cellspacing="0" border="0">
|
||||
<tr>
|
||||
<td class="md" nowrap valign="top">$renderer = & new HTML_QuickForm_Renderer_Array(true, true) </td>
|
||||
</tr>
|
||||
</table>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
<table cellspacing="5" cellpadding="0" border="0">
|
||||
<tr>
|
||||
<td>
|
||||
|
||||
</td>
|
||||
<td>
|
||||
|
||||
<p>
|
||||
|
||||
<p>
|
||||
Definition at line <a class="el" href="SmartyDynamic__example_8php-source.html#l00079">79</a> of file <a class="el" href="SmartyDynamic__example_8php-source.html">SmartyDynamic_example.php</a>.
|
||||
<p>
|
||||
Referenced by <a class="el" href="ui__browser_8class_8php-source.html#l00057">uiBrowser::loginform()</a>, and <a class="el" href="ui__browser_8class_8php-source.html#l00416">uiBrowser::systemPrefs()</a>. </td>
|
||||
</tr>
|
||||
</table>
|
||||
<a class="anchor" name="a1" doxytag="SmartyDynamic_example.php::$select"></a><p>
|
||||
<table class="mdTable" cellpadding="2" cellspacing="0">
|
||||
<tr>
|
||||
<td class="mdRow">
|
||||
<table cellpadding="0" cellspacing="0" border="0">
|
||||
<tr>
|
||||
<td class="md" nowrap valign="top">$select </td>
|
||||
</tr>
|
||||
</table>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
<table cellspacing="5" cellpadding="0" border="0">
|
||||
<tr>
|
||||
<td>
|
||||
|
||||
</td>
|
||||
<td>
|
||||
|
||||
<p>
|
||||
<b>Initial value:</b><div class="fragment"><pre class="fragment">& <a class="code" href="SmartyDynamic__example_8php.html#a0">$form</a>->addElement(
|
||||
'select',
|
||||
'iselTest',
|
||||
array('Test Select', 'note' => 'We recommend to check at least two categories!'),
|
||||
array(<span class="charliteral">'A'</span>=>'A * * * * (luxory)', <span class="charliteral">'B'</span>=>'B * * *<span class="charliteral">','</span>C'=>'C * *<span class="charliteral">','</span>D'=>'D * (simple)')
|
||||
)
|
||||
</pre></div>
|
||||
<p>
|
||||
Definition at line <a class="el" href="SmartyDynamic__example_8php-source.html#l00037">37</a> of file <a class="el" href="SmartyDynamic__example_8php-source.html">SmartyDynamic_example.php</a>. </td>
|
||||
</tr>
|
||||
</table>
|
||||
<a class="anchor" name="a6" doxytag="SmartyDynamic_example.php::$tpl"></a><p>
|
||||
<table class="mdTable" cellpadding="2" cellspacing="0">
|
||||
<tr>
|
||||
<td class="mdRow">
|
||||
<table cellpadding="0" cellspacing="0" border="0">
|
||||
<tr>
|
||||
<td class="md" nowrap valign="top">$tpl = & new Smarty </td>
|
||||
</tr>
|
||||
</table>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
<table cellspacing="5" cellpadding="0" border="0">
|
||||
<tr>
|
||||
<td>
|
||||
|
||||
</td>
|
||||
<td>
|
||||
|
||||
<p>
|
||||
|
||||
<p>
|
||||
Definition at line <a class="el" href="SmartyDynamic__example_8php-source.html#l00091">91</a> of file <a class="el" href="SmartyDynamic__example_8php-source.html">SmartyDynamic_example.php</a>. </td>
|
||||
</tr>
|
||||
</table>
|
||||
<a class="anchor" name="a8" doxytag="SmartyDynamic_example.php::compile_dir"></a><p>
|
||||
<table class="mdTable" cellpadding="2" cellspacing="0">
|
||||
<tr>
|
||||
<td class="mdRow">
|
||||
<table cellpadding="0" cellspacing="0" border="0">
|
||||
<tr>
|
||||
<td class="md" nowrap valign="top">$tpl <a class="el" href="SmartyStatic__example_8php.html#a13">compile_dir</a> = './templates_c' </td>
|
||||
</tr>
|
||||
</table>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
<table cellspacing="5" cellpadding="0" border="0">
|
||||
<tr>
|
||||
<td>
|
||||
|
||||
</td>
|
||||
<td>
|
||||
|
||||
<p>
|
||||
|
||||
<p>
|
||||
Definition at line <a class="el" href="SmartyDynamic__example_8php-source.html#l00093">93</a> of file <a class="el" href="SmartyDynamic__example_8php-source.html">SmartyDynamic_example.php</a>. </td>
|
||||
</tr>
|
||||
</table>
|
||||
<a class="anchor" name="a7" doxytag="SmartyDynamic_example.php::template_dir"></a><p>
|
||||
<table class="mdTable" cellpadding="2" cellspacing="0">
|
||||
<tr>
|
||||
<td class="mdRow">
|
||||
<table cellpadding="0" cellspacing="0" border="0">
|
||||
<tr>
|
||||
<td class="md" nowrap valign="top">$tpl <a class="el" href="SmartyStatic__example_8php.html#a12">template_dir</a> = './templates' </td>
|
||||
</tr>
|
||||
</table>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
<table cellspacing="5" cellpadding="0" border="0">
|
||||
<tr>
|
||||
<td>
|
||||
|
||||
</td>
|
||||
<td>
|
||||
|
||||
<p>
|
||||
|
||||
<p>
|
||||
Definition at line <a class="el" href="SmartyDynamic__example_8php-source.html#l00092">92</a> of file <a class="el" href="SmartyDynamic__example_8php-source.html">SmartyDynamic_example.php</a>. </td>
|
||||
</tr>
|
||||
</table>
|
||||
<hr size="1"><address style="align: right;"><small>Generated on Wed Jan 12 13:58:48 2005 for LiveSupport - htmlUI module by
|
||||
<a href="http://www.doxygen.org/index.html">
|
||||
<img src="doxygen.png" alt="doxygen" align="middle" border="0"></a> 1.4.0 </small></address>
|
||||
</body>
|
||||
</html>
|
|
@ -1,59 +0,0 @@
|
|||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
|
||||
<html><head><meta http-equiv="Content-Type" content="text/html;charset=iso-8859-1">
|
||||
<title>LiveSupport&nbsp;-&nbsp;htmlUI&nbsp;module: SmartyExtensions.inc.php Source File</title>
|
||||
<link href="doxygen.css" rel="stylesheet" type="text/css">
|
||||
</head><body>
|
||||
<!-- Generated by Doxygen 1.4.0 -->
|
||||
<div class="qindex"><a class="qindex" href="index.html">Main Page</a> | <a class="qindex" href="hierarchy.html">Class Hierarchy</a> | <a class="qindex" href="classes.html">Alphabetical List</a> | <a class="qindex" href="annotated.html">Class List</a> | <a class="qindex" href="dirs.html">Directories</a> | <a class="qindex" href="files.html">File List</a> | <a class="qindex" href="functions.html">Class Members</a> | <a class="qindex" href="globals.html">File Members</a></div>
|
||||
<div class="nav">
|
||||
<a class="el" href="dir_000000.html">var</a></div>
|
||||
<h1>SmartyExtensions.inc.php</h1><a href="SmartyExtensions_8inc_8php.html">Go to the documentation of this file.</a><div class="fragment"><pre class="fragment">00001 <?php
|
||||
00002 <span class="preprocessor">## some constants ########################</span>
|
||||
00003 <span class="preprocessor"></span><a class="code" href="ui__browser__init_8php.html#a0">$Smarty</a>->assign('UI_BROWSER', UI_BROWSER);
|
||||
00004 <a class="code" href="ui__browser__init_8php.html#a0">$Smarty</a>->assign('UI_HANDLER', UI_HANDLER);
|
||||
00005
|
||||
00006 <span class="comment">// --- Smarty Extensions ---</span>
|
||||
<a name="l00016"></a><a class="code" href="SmartyExtensions_8inc_8php.html#a0">00016</a> <span class="comment"></span>function <a class="code" href="SmartyExtensions_8inc_8php.html#a0">S_str_repeat</a>($param)
|
||||
00017 {
|
||||
00018 extract($param);
|
||||
00019 <span class="keywordflow">return</span> str_repeat($str, intval($count));
|
||||
00020
|
||||
00021 }
|
||||
00022 <a class="code" href="ui__browser__init_8php.html#a0">$Smarty</a>->register_function('str_repeat', 'S_str_repeat');
|
||||
00023
|
||||
<a name="l00032"></a><a class="code" href="SmartyExtensions_8inc_8php.html#a1">00032</a> function <a class="code" href="SmartyExtensions_8inc_8php.html#a1">S_urlencode</a>($param)
|
||||
00033 {
|
||||
00034 extract($param);
|
||||
00035 <span class="keywordflow">return</span> urlencode($str);
|
||||
00036 }
|
||||
00037 <a class="code" href="ui__browser__init_8php.html#a0">$Smarty</a>->register_function('urlencode', 'S_urlencode');
|
||||
00038
|
||||
<a name="l00047"></a><a class="code" href="SmartyExtensions_8inc_8php.html#a2">00047</a> function <a class="code" href="SmartyExtensions_8inc_8php.html#a2">S_htmlspecialchars</a>($param)
|
||||
00048 {
|
||||
00049 extract($param);
|
||||
00050 <span class="keywordflow">return</span> htmlspecialchars($str);
|
||||
00051 }
|
||||
00052 <a class="code" href="ui__browser__init_8php.html#a0">$Smarty</a>->register_function('htmlspecialchars', 'S_htmlspecialchars');
|
||||
00053
|
||||
<a name="l00061"></a><a class="code" href="SmartyExtensions_8inc_8php.html#a3">00061</a> function <a class="code" href="SmartyExtensions_8inc_8php.html#a3">S_system</a>($param)
|
||||
00062 {
|
||||
00063 extract($param);
|
||||
00064 eval($code);
|
||||
00065 }
|
||||
00066 <a class="code" href="ui__browser__init_8php.html#a0">$Smarty</a>->register_function('system', 'S_system');
|
||||
00067
|
||||
<a name="l00075"></a><a class="code" href="SmartyExtensions_8inc_8php.html#a4">00075</a> function <a class="code" href="SmartyExtensions_8inc_8php.html#a4">S_tra</a>($param)
|
||||
00076 {
|
||||
00077 global <a class="code" href="ui__browser__init_8php.html#a1">$uiBrowser</a>;
|
||||
00078
|
||||
00079 foreach($param as $v) {
|
||||
00080 echo <a class="code" href="ui__browser__init_8php.html#a1">$uiBrowser</a>->tra($v);
|
||||
00081 }
|
||||
00082 }
|
||||
00083 <a class="code" href="ui__browser__init_8php.html#a0">$Smarty</a>->register_function('tra', 'S_tra');
|
||||
00084 ?>
|
||||
</pre></div><hr size="1"><address style="align: right;"><small>Generated on Wed Jan 12 16:22:49 2005 for LiveSupport - htmlUI module by
|
||||
<a href="http://www.doxygen.org/index.html">
|
||||
<img src="doxygen.png" alt="doxygen" align="middle" border="0"></a> 1.4.0 </small></address>
|
||||
</body>
|
||||
</html>
|
|
@ -1,232 +0,0 @@
|
|||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
|
||||
<html><head><meta http-equiv="Content-Type" content="text/html;charset=iso-8859-1">
|
||||
<title>LiveSupport&nbsp;-&nbsp;htmlUI&nbsp;module: SmartyExtensions.inc.php File Reference</title>
|
||||
<link href="doxygen.css" rel="stylesheet" type="text/css">
|
||||
</head><body>
|
||||
<!-- Generated by Doxygen 1.4.0 -->
|
||||
<div class="qindex"><a class="qindex" href="index.html">Main Page</a> | <a class="qindex" href="hierarchy.html">Class Hierarchy</a> | <a class="qindex" href="classes.html">Alphabetical List</a> | <a class="qindex" href="annotated.html">Class List</a> | <a class="qindex" href="dirs.html">Directories</a> | <a class="qindex" href="files.html">File List</a> | <a class="qindex" href="functions.html">Class Members</a> | <a class="qindex" href="globals.html">File Members</a></div>
|
||||
<div class="nav">
|
||||
<a class="el" href="dir_000000.html">var</a></div>
|
||||
<h1>SmartyExtensions.inc.php File Reference</h1>
|
||||
<p>
|
||||
<a href="SmartyExtensions_8inc_8php-source.html">Go to the source code of this file.</a><table border="0" cellpadding="0" cellspacing="0">
|
||||
<tr><td></td></tr>
|
||||
<tr><td colspan="2"><br><h2>Functions</h2></td></tr>
|
||||
<tr><td class="memItemLeft" nowrap align="right" valign="top"> </td><td class="memItemRight" valign="bottom"><a class="el" href="SmartyExtensions_8inc_8php.html#a0">S_str_repeat</a> ($param)</td></tr>
|
||||
|
||||
<tr><td class="mdescLeft"> </td><td class="mdescRight">str_repeat <a href="#a0"></a><br></td></tr>
|
||||
<tr><td class="memItemLeft" nowrap align="right" valign="top"> </td><td class="memItemRight" valign="bottom"><a class="el" href="SmartyExtensions_8inc_8php.html#a1">S_urlencode</a> ($param)</td></tr>
|
||||
|
||||
<tr><td class="mdescLeft"> </td><td class="mdescRight">urlencode <a href="#a1"></a><br></td></tr>
|
||||
<tr><td class="memItemLeft" nowrap align="right" valign="top"> </td><td class="memItemRight" valign="bottom"><a class="el" href="SmartyExtensions_8inc_8php.html#a2">S_htmlspecialchars</a> ($param)</td></tr>
|
||||
|
||||
<tr><td class="mdescLeft"> </td><td class="mdescRight">htmlspecialchars <a href="#a2"></a><br></td></tr>
|
||||
<tr><td class="memItemLeft" nowrap align="right" valign="top"> </td><td class="memItemRight" valign="bottom"><a class="el" href="SmartyExtensions_8inc_8php.html#a3">S_system</a> ($param)</td></tr>
|
||||
|
||||
<tr><td class="mdescLeft"> </td><td class="mdescRight">system <a href="#a3"></a><br></td></tr>
|
||||
<tr><td class="memItemLeft" nowrap align="right" valign="top"> </td><td class="memItemRight" valign="bottom"><a class="el" href="SmartyExtensions_8inc_8php.html#a4">S_tra</a> ($param)</td></tr>
|
||||
|
||||
<tr><td class="mdescLeft"> </td><td class="mdescRight">tra <a href="#a4"></a><br></td></tr>
|
||||
</table>
|
||||
<hr><h2>Function Documentation</h2>
|
||||
<a class="anchor" name="a2" doxytag="SmartyExtensions.inc.php::S_htmlspecialchars"></a><p>
|
||||
<table class="mdTable" cellpadding="2" cellspacing="0">
|
||||
<tr>
|
||||
<td class="mdRow">
|
||||
<table cellpadding="0" cellspacing="0" border="0">
|
||||
<tr>
|
||||
<td class="md" nowrap valign="top">S_htmlspecialchars </td>
|
||||
<td class="md" valign="top">( </td>
|
||||
<td class="md" nowrap valign="top">$ </td>
|
||||
<td class="mdname1" valign="top" nowrap> <em>param</em> </td>
|
||||
<td class="md" valign="top"> ) </td>
|
||||
<td class="md" nowrap></td>
|
||||
</tr>
|
||||
</table>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
<table cellspacing="5" cellpadding="0" border="0">
|
||||
<tr>
|
||||
<td>
|
||||
|
||||
</td>
|
||||
<td>
|
||||
|
||||
<p>
|
||||
htmlspecialchars
|
||||
<p>
|
||||
convert special chars in given string to html-entitys.<p>
|
||||
<dl compact><dt><b>Parameters:</b></dt><dd>
|
||||
<table border="0" cellspacing="2" cellpadding="0">
|
||||
<tr><td valign="top"></td><td valign="top"><em>str</em> </td><td>string, string to convert </td></tr>
|
||||
</table>
|
||||
</dl>
|
||||
<dl compact><dt><b>Returns:</b></dt><dd>string, converted string </dd></dl>
|
||||
|
||||
<p>
|
||||
Definition at line <a class="el" href="SmartyExtensions_8inc_8php-source.html#l00047">47</a> of file <a class="el" href="SmartyExtensions_8inc_8php-source.html">SmartyExtensions.inc.php</a>. </td>
|
||||
</tr>
|
||||
</table>
|
||||
<a class="anchor" name="a0" doxytag="SmartyExtensions.inc.php::S_str_repeat"></a><p>
|
||||
<table class="mdTable" cellpadding="2" cellspacing="0">
|
||||
<tr>
|
||||
<td class="mdRow">
|
||||
<table cellpadding="0" cellspacing="0" border="0">
|
||||
<tr>
|
||||
<td class="md" nowrap valign="top">S_str_repeat </td>
|
||||
<td class="md" valign="top">( </td>
|
||||
<td class="md" nowrap valign="top">$ </td>
|
||||
<td class="mdname1" valign="top" nowrap> <em>param</em> </td>
|
||||
<td class="md" valign="top"> ) </td>
|
||||
<td class="md" nowrap></td>
|
||||
</tr>
|
||||
</table>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
<table cellspacing="5" cellpadding="0" border="0">
|
||||
<tr>
|
||||
<td>
|
||||
|
||||
</td>
|
||||
<td>
|
||||
|
||||
<p>
|
||||
str_repeat
|
||||
<p>
|
||||
Repeate given string.<p>
|
||||
<dl compact><dt><b>Parameters:</b></dt><dd>
|
||||
<table border="0" cellspacing="2" cellpadding="0">
|
||||
<tr><td valign="top"></td><td valign="top"><em>str</em> </td><td>string, string to repeate </td></tr>
|
||||
<tr><td valign="top"></td><td valign="top"><em>count</em> </td><td>numeric, how often to repeate (converted to type integer) </td></tr>
|
||||
</table>
|
||||
</dl>
|
||||
<dl compact><dt><b>Returns:</b></dt><dd>string, repeated string </dd></dl>
|
||||
|
||||
<p>
|
||||
Definition at line <a class="el" href="SmartyExtensions_8inc_8php-source.html#l00016">16</a> of file <a class="el" href="SmartyExtensions_8inc_8php-source.html">SmartyExtensions.inc.php</a>. </td>
|
||||
</tr>
|
||||
</table>
|
||||
<a class="anchor" name="a3" doxytag="SmartyExtensions.inc.php::S_system"></a><p>
|
||||
<table class="mdTable" cellpadding="2" cellspacing="0">
|
||||
<tr>
|
||||
<td class="mdRow">
|
||||
<table cellpadding="0" cellspacing="0" border="0">
|
||||
<tr>
|
||||
<td class="md" nowrap valign="top">S_system </td>
|
||||
<td class="md" valign="top">( </td>
|
||||
<td class="md" nowrap valign="top">$ </td>
|
||||
<td class="mdname1" valign="top" nowrap> <em>param</em> </td>
|
||||
<td class="md" valign="top"> ) </td>
|
||||
<td class="md" nowrap></td>
|
||||
</tr>
|
||||
</table>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
<table cellspacing="5" cellpadding="0" border="0">
|
||||
<tr>
|
||||
<td>
|
||||
|
||||
</td>
|
||||
<td>
|
||||
|
||||
<p>
|
||||
system
|
||||
<p>
|
||||
Execute some PHP-code.<p>
|
||||
<dl compact><dt><b>Parameters:</b></dt><dd>
|
||||
<table border="0" cellspacing="2" cellpadding="0">
|
||||
<tr><td valign="top"></td><td valign="top"><em>code</em> </td><td>string, code to execute </td></tr>
|
||||
</table>
|
||||
</dl>
|
||||
|
||||
<p>
|
||||
Definition at line <a class="el" href="SmartyExtensions_8inc_8php-source.html#l00061">61</a> of file <a class="el" href="SmartyExtensions_8inc_8php-source.html">SmartyExtensions.inc.php</a>. </td>
|
||||
</tr>
|
||||
</table>
|
||||
<a class="anchor" name="a4" doxytag="SmartyExtensions.inc.php::S_tra"></a><p>
|
||||
<table class="mdTable" cellpadding="2" cellspacing="0">
|
||||
<tr>
|
||||
<td class="mdRow">
|
||||
<table cellpadding="0" cellspacing="0" border="0">
|
||||
<tr>
|
||||
<td class="md" nowrap valign="top">S_tra </td>
|
||||
<td class="md" valign="top">( </td>
|
||||
<td class="md" nowrap valign="top">$ </td>
|
||||
<td class="mdname1" valign="top" nowrap> <em>param</em> </td>
|
||||
<td class="md" valign="top"> ) </td>
|
||||
<td class="md" nowrap></td>
|
||||
</tr>
|
||||
</table>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
<table cellspacing="5" cellpadding="0" border="0">
|
||||
<tr>
|
||||
<td>
|
||||
|
||||
</td>
|
||||
<td>
|
||||
|
||||
<p>
|
||||
tra
|
||||
<p>
|
||||
Translate given string.<p>
|
||||
<dl compact><dt><b>Parameters:</b></dt><dd>
|
||||
<table border="0" cellspacing="2" cellpadding="0">
|
||||
<tr><td valign="top"></td><td valign="top"><em>void</em> </td><td>array, array of strings to be outputted translated </td></tr>
|
||||
</table>
|
||||
</dl>
|
||||
|
||||
<p>
|
||||
Definition at line <a class="el" href="SmartyExtensions_8inc_8php-source.html#l00075">75</a> of file <a class="el" href="SmartyExtensions_8inc_8php-source.html">SmartyExtensions.inc.php</a>.
|
||||
<p>
|
||||
References <a class="el" href="ui__browser__init_8php-source.html#l00026">$uiBrowser</a>. </td>
|
||||
</tr>
|
||||
</table>
|
||||
<a class="anchor" name="a1" doxytag="SmartyExtensions.inc.php::S_urlencode"></a><p>
|
||||
<table class="mdTable" cellpadding="2" cellspacing="0">
|
||||
<tr>
|
||||
<td class="mdRow">
|
||||
<table cellpadding="0" cellspacing="0" border="0">
|
||||
<tr>
|
||||
<td class="md" nowrap valign="top">S_urlencode </td>
|
||||
<td class="md" valign="top">( </td>
|
||||
<td class="md" nowrap valign="top">$ </td>
|
||||
<td class="mdname1" valign="top" nowrap> <em>param</em> </td>
|
||||
<td class="md" valign="top"> ) </td>
|
||||
<td class="md" nowrap></td>
|
||||
</tr>
|
||||
</table>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
<table cellspacing="5" cellpadding="0" border="0">
|
||||
<tr>
|
||||
<td>
|
||||
|
||||
</td>
|
||||
<td>
|
||||
|
||||
<p>
|
||||
urlencode
|
||||
<p>
|
||||
Encode given string to use in URL.<p>
|
||||
<dl compact><dt><b>Parameters:</b></dt><dd>
|
||||
<table border="0" cellspacing="2" cellpadding="0">
|
||||
<tr><td valign="top"></td><td valign="top"><em>str</em> </td><td>string, string to encode </td></tr>
|
||||
</table>
|
||||
</dl>
|
||||
<dl compact><dt><b>Returns:</b></dt><dd>string, encoded string </dd></dl>
|
||||
|
||||
<p>
|
||||
Definition at line <a class="el" href="SmartyExtensions_8inc_8php-source.html#l00032">32</a> of file <a class="el" href="SmartyExtensions_8inc_8php-source.html">SmartyExtensions.inc.php</a>. </td>
|
||||
</tr>
|
||||
</table>
|
||||
<hr size="1"><address style="align: right;"><small>Generated on Wed Jan 12 16:22:49 2005 for LiveSupport - htmlUI module by
|
||||
<a href="http://www.doxygen.org/index.html">
|
||||
<img src="doxygen.png" alt="doxygen" align="middle" border="0"></a> 1.4.0 </small></address>
|
||||
</body>
|
||||
</html>
|
|
@ -1,142 +0,0 @@
|
|||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
|
||||
<html><head><meta http-equiv="Content-Type" content="text/html;charset=iso-8859-1">
|
||||
<title>LiveSupport&nbsp;-&nbsp;htmlUI&nbsp;module: SmartyStatic_example.php Source File</title>
|
||||
<link href="doxygen.css" rel="stylesheet" type="text/css">
|
||||
</head><body>
|
||||
<!-- Generated by Doxygen 1.4.0 -->
|
||||
<div class="qindex"><a class="qindex" href="index.html">Main Page</a> | <a class="qindex" href="hierarchy.html">Class Hierarchy</a> | <a class="qindex" href="classes.html">Alphabetical List</a> | <a class="qindex" href="annotated.html">Class List</a> | <a class="qindex" href="dirs.html">Directories</a> | <a class="qindex" href="files.html">File List</a> | <a class="qindex" href="functions.html">Class Members</a> | <a class="qindex" href="globals.html">File Members</a></div>
|
||||
<div class="nav">
|
||||
<a class="el" href="dir_000000.html">var</a> / <a class="el" href="dir_000001.html">html</a></div>
|
||||
<h1>SmartyStatic_example.php</h1><a href="SmartyStatic__example_8php.html">Go to the documentation of this file.</a><div class="fragment"><pre class="fragment">00001 <?php
|
||||
00011 require_once 'HTML/QuickForm.php';
|
||||
00012 require_once 'HTML/QuickForm/Renderer/ArraySmarty.php';
|
||||
00013 <span class="comment">// fix this if your Smarty is somewhere else</span>
|
||||
00014 require_once 'Smarty/libs/Smarty.class.php';
|
||||
00015
|
||||
00016 <span class="comment">// Form name will be used to find the placeholders.</span>
|
||||
00017
|
||||
<a name="l00018"></a><a class="code" href="SmartyStatic__example_8php.html#a0">00018</a> <a class="code" href="SmartyDynamic__example_8php.html#a0">$form</a> = <span class="keyword">new</span> HTML_QuickForm('form', 'POST');
|
||||
00019
|
||||
00020 <span class="comment">// Fills with some defaults values</span>
|
||||
00021
|
||||
00022 <a class="code" href="SmartyStatic__example_8php.html#a1">$defaultValues</a>['company'] = 'Mamasam';
|
||||
00023 <a class="code" href="SmartyStatic__example_8php.html#a1">$defaultValues</a>['country'] = array();
|
||||
00024 <a class="code" href="SmartyStatic__example_8php.html#a1">$defaultValues</a>['name'] = array('first'=>'Bertrand', 'last'=>'Mansion');
|
||||
<a name="l00025"></a><a class="code" href="SmartyStatic__example_8php.html#a1">00025</a> <a class="code" href="SmartyStatic__example_8php.html#a1">$defaultValues</a>['phone'] = array('513', '123', '4567');
|
||||
00026 <a class="code" href="SmartyDynamic__example_8php.html#a0">$form</a>->setDefaults($defaultValues);
|
||||
00027
|
||||
00028 <span class="comment">// Hidden</span>
|
||||
00029
|
||||
00030 <a class="code" href="SmartyDynamic__example_8php.html#a0">$form</a>->addElement('hidden', 'session', '1234567890');
|
||||
00031
|
||||
00032 <span class="comment">// Personal information</span>
|
||||
00033
|
||||
00034 <a class="code" href="SmartyDynamic__example_8php.html#a0">$form</a>->addElement('header', 'personal', 'Personal Information');
|
||||
00035
|
||||
00036 <a class="code" href="SmartyDynamic__example_8php.html#a0">$form</a>->addElement('hidden', 'ihidTest', 'hiddenField');
|
||||
00037 <a class="code" href="SmartyDynamic__example_8php.html#a0">$form</a>->addElement('text', 'email', 'Your email:');
|
||||
00038 <a class="code" href="SmartyDynamic__example_8php.html#a0">$form</a>->addElement('password', 'pass', array('Your password:', 'note'=>'Please, choose a 8-10 characters password.'), 'size=10');
|
||||
00039 <a class="code" href="SmartyDynamic__example_8php.html#a4">$name</a>['last'] = &HTML_QuickForm::createElement('text', 'first', 'First', 'size=10');
|
||||
<a name="l00040"></a><a class="code" href="SmartyStatic__example_8php.html#a2">00040</a> <a class="code" href="SmartyDynamic__example_8php.html#a4">$name</a>['first'] = &HTML_QuickForm::createElement('text', 'last', 'Last', 'size=10');
|
||||
00041 <a class="code" href="SmartyDynamic__example_8php.html#a0">$form</a>->addGroup($name, 'name', 'Name:', ',&nbsp;');
|
||||
<a name="l00042"></a><a class="code" href="SmartyStatic__example_8php.html#a3">00042</a> <a class="code" href="SmartyStatic__example_8php.html#a3">$areaCode</a> = &HTML_QuickForm::createElement('text', '', null,'size=4 maxlength=3');
|
||||
<a name="l00043"></a><a class="code" href="SmartyStatic__example_8php.html#a4">00043</a> <a class="code" href="SmartyStatic__example_8php.html#a4">$phoneNo1</a> = &HTML_QuickForm::createElement('text', '', null, 'size=4 maxlength=3');
|
||||
<a name="l00044"></a><a class="code" href="SmartyStatic__example_8php.html#a5">00044</a> <a class="code" href="SmartyStatic__example_8php.html#a5">$phoneNo2</a> = &HTML_QuickForm::createElement('text', '', null, 'size=5 maxlength=4');
|
||||
00045 <a class="code" href="SmartyDynamic__example_8php.html#a0">$form</a>->addGroup(array($areaCode, $phoneNo1, $phoneNo2), 'phone', 'Telephone:', <span class="charliteral">'-'</span>);
|
||||
00046
|
||||
00047 <span class="comment">// Company information</span>
|
||||
00048
|
||||
00049 <a class="code" href="SmartyDynamic__example_8php.html#a0">$form</a>->addElement('header', 'company_info', 'Company Information');
|
||||
00050
|
||||
00051 <a class="code" href="SmartyDynamic__example_8php.html#a0">$form</a>->addElement('text', 'company', 'Company:', 'size=20');
|
||||
00052
|
||||
00053 <a class="code" href="SmartyStatic__example_8php.html#a6">$str</a>[] = &HTML_QuickForm::createElement('text', '', null, 'size=20');
|
||||
<a name="l00054"></a><a class="code" href="SmartyStatic__example_8php.html#a6">00054</a> <a class="code" href="SmartyStatic__example_8php.html#a6">$str</a>[] = &HTML_QuickForm::createElement('text', '', null, 'size=20');
|
||||
00055 <a class="code" href="SmartyDynamic__example_8php.html#a0">$form</a>->addGroup($str, 'street', 'Street:', '<br />');
|
||||
00056
|
||||
00057 <a class="code" href="SmartyStatic__example_8php.html#a7">$addr</a>['zip'] = &HTML_QuickForm::createElement('text', 'zip', 'Zip', 'size=6 maxlength=10');
|
||||
<a name="l00058"></a><a class="code" href="SmartyStatic__example_8php.html#a7">00058</a> <a class="code" href="SmartyStatic__example_8php.html#a7">$addr</a>['city'] = &HTML_QuickForm::createElement('text', 'city', 'City', 'size=15');
|
||||
00059 <a class="code" href="SmartyDynamic__example_8php.html#a0">$form</a>->addGroup($addr, 'address', 'Zip, city:');
|
||||
00060
|
||||
<a name="l00061"></a><a class="code" href="SmartyStatic__example_8php.html#a8">00061</a> <a class="code" href="SmartyDynamic__example_8php.html#a1">$select</a> = array('' => 'Please select...', 'AU' => 'Australia', 'FR' => 'France', 'DE' => 'Germany', 'IT' => 'Italy');
|
||||
00062 <a class="code" href="SmartyDynamic__example_8php.html#a0">$form</a>->addElement('select', 'country', 'Country:', $select);
|
||||
00063
|
||||
00064 <a class="code" href="SmartyDynamic__example_8php.html#a2">$checkbox</a>[] = &HTML_QuickForm::createElement('checkbox', <span class="charliteral">'A'</span>, null, <span class="charliteral">'A'</span>);
|
||||
00065 <a class="code" href="SmartyDynamic__example_8php.html#a2">$checkbox</a>[] = &HTML_QuickForm::createElement('checkbox', <span class="charliteral">'B'</span>, null, <span class="charliteral">'B'</span>);
|
||||
00066 <a class="code" href="SmartyDynamic__example_8php.html#a2">$checkbox</a>[] = &HTML_QuickForm::createElement('checkbox', <span class="charliteral">'C'</span>, null, <span class="charliteral">'C'</span>);
|
||||
<a name="l00067"></a><a class="code" href="SmartyStatic__example_8php.html#a9">00067</a> <a class="code" href="SmartyDynamic__example_8php.html#a2">$checkbox</a>[] = &HTML_QuickForm::createElement('checkbox', <span class="charliteral">'D'</span>, null, <span class="charliteral">'D'</span>);
|
||||
00068 <a class="code" href="SmartyDynamic__example_8php.html#a0">$form</a>->addGroup($checkbox, 'destination', 'Destination:', array('&nbsp;', '<br />'));
|
||||
00069
|
||||
00070 <span class="comment">// Other elements</span>
|
||||
00071
|
||||
00072 <a class="code" href="SmartyDynamic__example_8php.html#a0">$form</a>->addElement('checkbox', 'news', '', <span class="stringliteral">" Check this box if you don't want to receive our newsletter."</span>);
|
||||
00073
|
||||
00074 <a class="code" href="SmartyDynamic__example_8php.html#a0">$form</a>->addElement('reset', 'reset', 'Reset');
|
||||
00075 <a class="code" href="SmartyDynamic__example_8php.html#a0">$form</a>->addElement('submit', 'submit', 'Register');
|
||||
00076
|
||||
00077 <span class="comment">// Adds some validation rules</span>
|
||||
00078
|
||||
00079 <a class="code" href="SmartyDynamic__example_8php.html#a0">$form</a>->addRule('email', 'Email address is required', 'required');
|
||||
00080 <a class="code" href="SmartyDynamic__example_8php.html#a0">$form</a>->addGroupRule('name', 'Name is required', 'required');
|
||||
00081 <a class="code" href="SmartyDynamic__example_8php.html#a0">$form</a>->addRule('pass', 'Password must be between 8 to 10 characters', 'rangelength', array(8, 10));
|
||||
00082 <a class="code" href="SmartyDynamic__example_8php.html#a0">$form</a>->addRule('country', 'Country is a required field', 'required');
|
||||
00083 <a class="code" href="SmartyDynamic__example_8php.html#a0">$form</a>->addGroupRule('destination', 'Please check at least two boxes', 'required', null, 2);
|
||||
00084 <a class="code" href="SmartyDynamic__example_8php.html#a0">$form</a>->addGroupRule('phone', 'Please fill all phone fields', 'required');
|
||||
00085 <a class="code" href="SmartyDynamic__example_8php.html#a0">$form</a>->addGroupRule('phone', 'Values must be numeric', 'numeric');
|
||||
00086
|
||||
00087 <a class="code" href="SmartyStatic__example_8php.html#a10">$AddrRules</a>['zip'][0] = array('Zip code is required', 'required');
|
||||
00088 <a class="code" href="SmartyStatic__example_8php.html#a10">$AddrRules</a>['zip'][1] = array('Zip code is numeric only', 'numeric');
|
||||
00089 <a class="code" href="SmartyStatic__example_8php.html#a10">$AddrRules</a>['city'][0] = array('City is required', 'required');
|
||||
<a name="l00090"></a><a class="code" href="SmartyStatic__example_8php.html#a10">00090</a> <a class="code" href="SmartyStatic__example_8php.html#a10">$AddrRules</a>['city'][1] = array('City is letters only', 'lettersonly');
|
||||
00091 <a class="code" href="SmartyDynamic__example_8php.html#a0">$form</a>->addGroupRule('address', $AddrRules);
|
||||
00092
|
||||
00093 <span class="comment">// Tries to validate the form</span>
|
||||
00094 <span class="keywordflow">if</span> ($form->validate()) {
|
||||
00095 <span class="comment">// Form is validated, then freezes the data</span>
|
||||
00096 <a class="code" href="SmartyDynamic__example_8php.html#a0">$form</a>->freeze();
|
||||
00097 }
|
||||
00098
|
||||
00099 <span class="comment">// setup a template object</span>
|
||||
<a name="l00100"></a><a class="code" href="SmartyStatic__example_8php.html#a11">00100</a> <a class="code" href="SmartyDynamic__example_8php.html#a6">$tpl</a> =& <span class="keyword">new</span> Smarty;
|
||||
<a name="l00101"></a><a class="code" href="SmartyStatic__example_8php.html#a12">00101</a> <a class="code" href="SmartyDynamic__example_8php.html#a6">$tpl</a>->template_dir = './templates';
|
||||
<a name="l00102"></a><a class="code" href="SmartyStatic__example_8php.html#a13">00102</a> <a class="code" href="SmartyDynamic__example_8php.html#a6">$tpl</a>->compile_dir = './templates_c';
|
||||
00103
|
||||
<a name="l00104"></a><a class="code" href="SmartyStatic__example_8php.html#a14">00104</a> <a class="code" href="SmartyDynamic__example_8php.html#a5">$renderer</a> =& <span class="keyword">new</span> HTML_QuickForm_Renderer_ArraySmarty($tpl, <span class="keyword">true</span>);
|
||||
00105
|
||||
00106 <a class="code" href="SmartyDynamic__example_8php.html#a5">$renderer</a>->setRequiredTemplate(
|
||||
00107 '{<span class="keywordflow">if</span> $error}
|
||||
00108 <font color=<span class="stringliteral">"red"</span>>{$label|upper}</font>
|
||||
00109 {<span class="keywordflow">else</span>}
|
||||
00110 {$label}
|
||||
00111 {<span class="keywordflow">if</span> $required}
|
||||
00112 <font color=<span class="stringliteral">"red"</span> size=<span class="stringliteral">"1"</span>>*</font>
|
||||
00113 {/<span class="keywordflow">if</span>}
|
||||
00114 {/<span class="keywordflow">if</span>}'
|
||||
00115 );
|
||||
00116
|
||||
00117 <a class="code" href="SmartyDynamic__example_8php.html#a5">$renderer</a>->setErrorTemplate(
|
||||
00118 '{<span class="keywordflow">if</span> $error}
|
||||
00119 <font color=<span class="stringliteral">"orange"</span> size=<span class="stringliteral">"1"</span>>{$error}</font><br />
|
||||
00120 {/<span class="keywordflow">if</span>}{$html}'
|
||||
00121 );
|
||||
00122
|
||||
00123 <a class="code" href="SmartyDynamic__example_8php.html#a0">$form</a>->accept($renderer);
|
||||
00124
|
||||
00125 <span class="comment">// assign array with form data</span>
|
||||
00126 <a class="code" href="SmartyDynamic__example_8php.html#a6">$tpl</a>->assign('form', $renderer->toArray());
|
||||
00127
|
||||
00128 <span class="comment">// capture the array stucture</span>
|
||||
00129 ob_start();
|
||||
00130 print_r($renderer->toArray());
|
||||
00131 <a class="code" href="SmartyDynamic__example_8php.html#a6">$tpl</a>->assign('static_array', ob_get_contents());
|
||||
00132 ob_end_clean();
|
||||
00133
|
||||
00134 <span class="comment">// render and display the template</span>
|
||||
00135 <a class="code" href="SmartyDynamic__example_8php.html#a6">$tpl</a>->display('smarty-<span class="keyword">static</span>.tpl');
|
||||
00136
|
||||
00137 ?>
|
||||
</pre></div><hr size="1"><address style="align: right;"><small>Generated on Wed Jan 12 13:58:47 2005 for LiveSupport - htmlUI module by
|
||||
<a href="http://www.doxygen.org/index.html">
|
||||
<img src="doxygen.png" alt="doxygen" align="middle" border="0"></a> 1.4.0 </small></address>
|
||||
</body>
|
||||
</html>
|
|
@ -1,426 +0,0 @@
|
|||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
|
||||
<html><head><meta http-equiv="Content-Type" content="text/html;charset=iso-8859-1">
|
||||
<title>LiveSupport&nbsp;-&nbsp;htmlUI&nbsp;module: SmartyStatic_example.php File Reference</title>
|
||||
<link href="doxygen.css" rel="stylesheet" type="text/css">
|
||||
</head><body>
|
||||
<!-- Generated by Doxygen 1.4.0 -->
|
||||
<div class="qindex"><a class="qindex" href="index.html">Main Page</a> | <a class="qindex" href="hierarchy.html">Class Hierarchy</a> | <a class="qindex" href="classes.html">Alphabetical List</a> | <a class="qindex" href="annotated.html">Class List</a> | <a class="qindex" href="dirs.html">Directories</a> | <a class="qindex" href="files.html">File List</a> | <a class="qindex" href="functions.html">Class Members</a> | <a class="qindex" href="globals.html">File Members</a></div>
|
||||
<div class="nav">
|
||||
<a class="el" href="dir_000000.html">var</a> / <a class="el" href="dir_000001.html">html</a></div>
|
||||
<h1>SmartyStatic_example.php File Reference</h1>
|
||||
<p>
|
||||
<a href="SmartyStatic__example_8php-source.html">Go to the source code of this file.</a><table border="0" cellpadding="0" cellspacing="0">
|
||||
<tr><td></td></tr>
|
||||
<tr><td colspan="2"><br><h2>Variables</h2></td></tr>
|
||||
<tr><td class="memItemLeft" nowrap align="right" valign="top"> </td><td class="memItemRight" valign="bottom"><a class="el" href="SmartyStatic__example_8php.html#a0">$form</a> = new HTML_QuickForm('form', 'POST')</td></tr>
|
||||
|
||||
<tr><td class="memItemLeft" nowrap align="right" valign="top"> </td><td class="memItemRight" valign="bottom"><a class="el" href="SmartyStatic__example_8php.html#a1">$defaultValues</a> ['company'] = 'Mamasam'</td></tr>
|
||||
|
||||
<tr><td class="memItemLeft" nowrap align="right" valign="top"> </td><td class="memItemRight" valign="bottom"><a class="el" href="SmartyStatic__example_8php.html#a2">$name</a> ['last'] = &HTML_QuickForm::createElement('text', 'first', 'First', 'size=10')</td></tr>
|
||||
|
||||
<tr><td class="memItemLeft" nowrap align="right" valign="top"> </td><td class="memItemRight" valign="bottom"><a class="el" href="SmartyStatic__example_8php.html#a3">$areaCode</a> = &HTML_QuickForm::createElement('text', '', null,'size=4 maxlength=3')</td></tr>
|
||||
|
||||
<tr><td class="memItemLeft" nowrap align="right" valign="top"> </td><td class="memItemRight" valign="bottom"><a class="el" href="SmartyStatic__example_8php.html#a4">$phoneNo1</a> = &HTML_QuickForm::createElement('text', '', null, 'size=4 maxlength=3')</td></tr>
|
||||
|
||||
<tr><td class="memItemLeft" nowrap align="right" valign="top"> </td><td class="memItemRight" valign="bottom"><a class="el" href="SmartyStatic__example_8php.html#a5">$phoneNo2</a> = &HTML_QuickForm::createElement('text', '', null, 'size=5 maxlength=4')</td></tr>
|
||||
|
||||
<tr><td class="memItemLeft" nowrap align="right" valign="top"> </td><td class="memItemRight" valign="bottom"><a class="el" href="SmartyStatic__example_8php.html#a6">$str</a> [] = &HTML_QuickForm::createElement('text', '', null, 'size=20')</td></tr>
|
||||
|
||||
<tr><td class="memItemLeft" nowrap align="right" valign="top"> </td><td class="memItemRight" valign="bottom"><a class="el" href="SmartyStatic__example_8php.html#a7">$addr</a> ['zip'] = &HTML_QuickForm::createElement('text', 'zip', 'Zip', 'size=6 maxlength=10')</td></tr>
|
||||
|
||||
<tr><td class="memItemLeft" nowrap align="right" valign="top"> </td><td class="memItemRight" valign="bottom"><a class="el" href="SmartyStatic__example_8php.html#a8">$select</a> = array('' => 'Please select...', 'AU' => 'Australia', 'FR' => 'France', 'DE' => 'Germany', 'IT' => 'Italy')</td></tr>
|
||||
|
||||
<tr><td class="memItemLeft" nowrap align="right" valign="top"> </td><td class="memItemRight" valign="bottom"><a class="el" href="SmartyStatic__example_8php.html#a9">$checkbox</a> [] = &HTML_QuickForm::createElement('checkbox', 'A', null, 'A')</td></tr>
|
||||
|
||||
<tr><td class="memItemLeft" nowrap align="right" valign="top"> </td><td class="memItemRight" valign="bottom"><a class="el" href="SmartyStatic__example_8php.html#a10">$AddrRules</a> ['zip'][0] = array('Zip code is required', 'required')</td></tr>
|
||||
|
||||
<tr><td class="memItemLeft" nowrap align="right" valign="top"> </td><td class="memItemRight" valign="bottom"><a class="el" href="SmartyStatic__example_8php.html#a11">$tpl</a> = & new Smarty</td></tr>
|
||||
|
||||
<tr><td class="memItemLeft" nowrap align="right" valign="top">$tpl </td><td class="memItemRight" valign="bottom"><a class="el" href="SmartyStatic__example_8php.html#a12">template_dir</a> = './templates'</td></tr>
|
||||
|
||||
<tr><td class="memItemLeft" nowrap align="right" valign="top">$tpl </td><td class="memItemRight" valign="bottom"><a class="el" href="SmartyStatic__example_8php.html#a13">compile_dir</a> = './templates_c'</td></tr>
|
||||
|
||||
<tr><td class="memItemLeft" nowrap align="right" valign="top"> </td><td class="memItemRight" valign="bottom"><a class="el" href="SmartyStatic__example_8php.html#a14">$renderer</a> = & new HTML_QuickForm_Renderer_ArraySmarty($tpl, true)</td></tr>
|
||||
|
||||
</table>
|
||||
<hr><h2>Variable Documentation</h2>
|
||||
<a class="anchor" name="a7" doxytag="SmartyStatic_example.php::$addr"></a><p>
|
||||
<table class="mdTable" cellpadding="2" cellspacing="0">
|
||||
<tr>
|
||||
<td class="mdRow">
|
||||
<table cellpadding="0" cellspacing="0" border="0">
|
||||
<tr>
|
||||
<td class="md" nowrap valign="top">$addr['city'] = &HTML_QuickForm::createElement('text', 'zip', 'Zip', 'size=6 maxlength=10') </td>
|
||||
</tr>
|
||||
</table>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
<table cellspacing="5" cellpadding="0" border="0">
|
||||
<tr>
|
||||
<td>
|
||||
|
||||
</td>
|
||||
<td>
|
||||
|
||||
<p>
|
||||
|
||||
<p>
|
||||
Definition at line <a class="el" href="SmartyStatic__example_8php-source.html#l00058">58</a> of file <a class="el" href="SmartyStatic__example_8php-source.html">SmartyStatic_example.php</a>. </td>
|
||||
</tr>
|
||||
</table>
|
||||
<a class="anchor" name="a10" doxytag="SmartyStatic_example.php::$AddrRules"></a><p>
|
||||
<table class="mdTable" cellpadding="2" cellspacing="0">
|
||||
<tr>
|
||||
<td class="mdRow">
|
||||
<table cellpadding="0" cellspacing="0" border="0">
|
||||
<tr>
|
||||
<td class="md" nowrap valign="top">$AddrRules['city'][1] = array('Zip code is required', 'required') </td>
|
||||
</tr>
|
||||
</table>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
<table cellspacing="5" cellpadding="0" border="0">
|
||||
<tr>
|
||||
<td>
|
||||
|
||||
</td>
|
||||
<td>
|
||||
|
||||
<p>
|
||||
|
||||
<p>
|
||||
Definition at line <a class="el" href="SmartyStatic__example_8php-source.html#l00090">90</a> of file <a class="el" href="SmartyStatic__example_8php-source.html">SmartyStatic_example.php</a>. </td>
|
||||
</tr>
|
||||
</table>
|
||||
<a class="anchor" name="a3" doxytag="SmartyStatic_example.php::$areaCode"></a><p>
|
||||
<table class="mdTable" cellpadding="2" cellspacing="0">
|
||||
<tr>
|
||||
<td class="mdRow">
|
||||
<table cellpadding="0" cellspacing="0" border="0">
|
||||
<tr>
|
||||
<td class="md" nowrap valign="top">$areaCode = &HTML_QuickForm::createElement('text', '', null,'size=4 maxlength=3') </td>
|
||||
</tr>
|
||||
</table>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
<table cellspacing="5" cellpadding="0" border="0">
|
||||
<tr>
|
||||
<td>
|
||||
|
||||
</td>
|
||||
<td>
|
||||
|
||||
<p>
|
||||
|
||||
<p>
|
||||
Definition at line <a class="el" href="SmartyStatic__example_8php-source.html#l00042">42</a> of file <a class="el" href="SmartyStatic__example_8php-source.html">SmartyStatic_example.php</a>. </td>
|
||||
</tr>
|
||||
</table>
|
||||
<a class="anchor" name="a9" doxytag="SmartyStatic_example.php::$checkbox"></a><p>
|
||||
<table class="mdTable" cellpadding="2" cellspacing="0">
|
||||
<tr>
|
||||
<td class="mdRow">
|
||||
<table cellpadding="0" cellspacing="0" border="0">
|
||||
<tr>
|
||||
<td class="md" nowrap valign="top">$checkbox[] = &HTML_QuickForm::createElement('checkbox', 'A', null, 'A') </td>
|
||||
</tr>
|
||||
</table>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
<table cellspacing="5" cellpadding="0" border="0">
|
||||
<tr>
|
||||
<td>
|
||||
|
||||
</td>
|
||||
<td>
|
||||
|
||||
<p>
|
||||
|
||||
<p>
|
||||
Definition at line <a class="el" href="SmartyStatic__example_8php-source.html#l00067">67</a> of file <a class="el" href="SmartyStatic__example_8php-source.html">SmartyStatic_example.php</a>. </td>
|
||||
</tr>
|
||||
</table>
|
||||
<a class="anchor" name="a1" doxytag="SmartyStatic_example.php::$defaultValues"></a><p>
|
||||
<table class="mdTable" cellpadding="2" cellspacing="0">
|
||||
<tr>
|
||||
<td class="mdRow">
|
||||
<table cellpadding="0" cellspacing="0" border="0">
|
||||
<tr>
|
||||
<td class="md" nowrap valign="top">$defaultValues['phone'] = 'Mamasam' </td>
|
||||
</tr>
|
||||
</table>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
<table cellspacing="5" cellpadding="0" border="0">
|
||||
<tr>
|
||||
<td>
|
||||
|
||||
</td>
|
||||
<td>
|
||||
|
||||
<p>
|
||||
|
||||
<p>
|
||||
Definition at line <a class="el" href="SmartyStatic__example_8php-source.html#l00025">25</a> of file <a class="el" href="SmartyStatic__example_8php-source.html">SmartyStatic_example.php</a>. </td>
|
||||
</tr>
|
||||
</table>
|
||||
<a class="anchor" name="a0" doxytag="SmartyStatic_example.php::$form"></a><p>
|
||||
<table class="mdTable" cellpadding="2" cellspacing="0">
|
||||
<tr>
|
||||
<td class="mdRow">
|
||||
<table cellpadding="0" cellspacing="0" border="0">
|
||||
<tr>
|
||||
<td class="md" nowrap valign="top">$form = new HTML_QuickForm('form', 'POST') </td>
|
||||
</tr>
|
||||
</table>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
<table cellspacing="5" cellpadding="0" border="0">
|
||||
<tr>
|
||||
<td>
|
||||
|
||||
</td>
|
||||
<td>
|
||||
|
||||
<p>
|
||||
|
||||
<p>
|
||||
Definition at line <a class="el" href="SmartyStatic__example_8php-source.html#l00018">18</a> of file <a class="el" href="SmartyStatic__example_8php-source.html">SmartyStatic_example.php</a>. </td>
|
||||
</tr>
|
||||
</table>
|
||||
<a class="anchor" name="a2" doxytag="SmartyStatic_example.php::$name"></a><p>
|
||||
<table class="mdTable" cellpadding="2" cellspacing="0">
|
||||
<tr>
|
||||
<td class="mdRow">
|
||||
<table cellpadding="0" cellspacing="0" border="0">
|
||||
<tr>
|
||||
<td class="md" nowrap valign="top">$name['first'] = &HTML_QuickForm::createElement('text', 'first', 'First', 'size=10') </td>
|
||||
</tr>
|
||||
</table>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
<table cellspacing="5" cellpadding="0" border="0">
|
||||
<tr>
|
||||
<td>
|
||||
|
||||
</td>
|
||||
<td>
|
||||
|
||||
<p>
|
||||
|
||||
<p>
|
||||
Definition at line <a class="el" href="SmartyStatic__example_8php-source.html#l00040">40</a> of file <a class="el" href="SmartyStatic__example_8php-source.html">SmartyStatic_example.php</a>. </td>
|
||||
</tr>
|
||||
</table>
|
||||
<a class="anchor" name="a4" doxytag="SmartyStatic_example.php::$phoneNo1"></a><p>
|
||||
<table class="mdTable" cellpadding="2" cellspacing="0">
|
||||
<tr>
|
||||
<td class="mdRow">
|
||||
<table cellpadding="0" cellspacing="0" border="0">
|
||||
<tr>
|
||||
<td class="md" nowrap valign="top">$phoneNo1 = &HTML_QuickForm::createElement('text', '', null, 'size=4 maxlength=3') </td>
|
||||
</tr>
|
||||
</table>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
<table cellspacing="5" cellpadding="0" border="0">
|
||||
<tr>
|
||||
<td>
|
||||
|
||||
</td>
|
||||
<td>
|
||||
|
||||
<p>
|
||||
|
||||
<p>
|
||||
Definition at line <a class="el" href="SmartyStatic__example_8php-source.html#l00043">43</a> of file <a class="el" href="SmartyStatic__example_8php-source.html">SmartyStatic_example.php</a>. </td>
|
||||
</tr>
|
||||
</table>
|
||||
<a class="anchor" name="a5" doxytag="SmartyStatic_example.php::$phoneNo2"></a><p>
|
||||
<table class="mdTable" cellpadding="2" cellspacing="0">
|
||||
<tr>
|
||||
<td class="mdRow">
|
||||
<table cellpadding="0" cellspacing="0" border="0">
|
||||
<tr>
|
||||
<td class="md" nowrap valign="top">$phoneNo2 = &HTML_QuickForm::createElement('text', '', null, 'size=5 maxlength=4') </td>
|
||||
</tr>
|
||||
</table>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
<table cellspacing="5" cellpadding="0" border="0">
|
||||
<tr>
|
||||
<td>
|
||||
|
||||
</td>
|
||||
<td>
|
||||
|
||||
<p>
|
||||
|
||||
<p>
|
||||
Definition at line <a class="el" href="SmartyStatic__example_8php-source.html#l00044">44</a> of file <a class="el" href="SmartyStatic__example_8php-source.html">SmartyStatic_example.php</a>. </td>
|
||||
</tr>
|
||||
</table>
|
||||
<a class="anchor" name="a14" doxytag="SmartyStatic_example.php::$renderer"></a><p>
|
||||
<table class="mdTable" cellpadding="2" cellspacing="0">
|
||||
<tr>
|
||||
<td class="mdRow">
|
||||
<table cellpadding="0" cellspacing="0" border="0">
|
||||
<tr>
|
||||
<td class="md" nowrap valign="top">$renderer = & new HTML_QuickForm_Renderer_ArraySmarty($tpl, true) </td>
|
||||
</tr>
|
||||
</table>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
<table cellspacing="5" cellpadding="0" border="0">
|
||||
<tr>
|
||||
<td>
|
||||
|
||||
</td>
|
||||
<td>
|
||||
|
||||
<p>
|
||||
|
||||
<p>
|
||||
Definition at line <a class="el" href="SmartyStatic__example_8php-source.html#l00104">104</a> of file <a class="el" href="SmartyStatic__example_8php-source.html">SmartyStatic_example.php</a>. </td>
|
||||
</tr>
|
||||
</table>
|
||||
<a class="anchor" name="a8" doxytag="SmartyStatic_example.php::$select"></a><p>
|
||||
<table class="mdTable" cellpadding="2" cellspacing="0">
|
||||
<tr>
|
||||
<td class="mdRow">
|
||||
<table cellpadding="0" cellspacing="0" border="0">
|
||||
<tr>
|
||||
<td class="md" nowrap valign="top">$select = array('' => 'Please select...', 'AU' => 'Australia', 'FR' => 'France', 'DE' => 'Germany', 'IT' => 'Italy') </td>
|
||||
</tr>
|
||||
</table>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
<table cellspacing="5" cellpadding="0" border="0">
|
||||
<tr>
|
||||
<td>
|
||||
|
||||
</td>
|
||||
<td>
|
||||
|
||||
<p>
|
||||
|
||||
<p>
|
||||
Definition at line <a class="el" href="SmartyStatic__example_8php-source.html#l00061">61</a> of file <a class="el" href="SmartyStatic__example_8php-source.html">SmartyStatic_example.php</a>. </td>
|
||||
</tr>
|
||||
</table>
|
||||
<a class="anchor" name="a6" doxytag="SmartyStatic_example.php::$str"></a><p>
|
||||
<table class="mdTable" cellpadding="2" cellspacing="0">
|
||||
<tr>
|
||||
<td class="mdRow">
|
||||
<table cellpadding="0" cellspacing="0" border="0">
|
||||
<tr>
|
||||
<td class="md" nowrap valign="top">$str[] = &HTML_QuickForm::createElement('text', '', null, 'size=20') </td>
|
||||
</tr>
|
||||
</table>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
<table cellspacing="5" cellpadding="0" border="0">
|
||||
<tr>
|
||||
<td>
|
||||
|
||||
</td>
|
||||
<td>
|
||||
|
||||
<p>
|
||||
|
||||
<p>
|
||||
Definition at line <a class="el" href="SmartyStatic__example_8php-source.html#l00054">54</a> of file <a class="el" href="SmartyStatic__example_8php-source.html">SmartyStatic_example.php</a>. </td>
|
||||
</tr>
|
||||
</table>
|
||||
<a class="anchor" name="a11" doxytag="SmartyStatic_example.php::$tpl"></a><p>
|
||||
<table class="mdTable" cellpadding="2" cellspacing="0">
|
||||
<tr>
|
||||
<td class="mdRow">
|
||||
<table cellpadding="0" cellspacing="0" border="0">
|
||||
<tr>
|
||||
<td class="md" nowrap valign="top">$tpl = & new Smarty </td>
|
||||
</tr>
|
||||
</table>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
<table cellspacing="5" cellpadding="0" border="0">
|
||||
<tr>
|
||||
<td>
|
||||
|
||||
</td>
|
||||
<td>
|
||||
|
||||
<p>
|
||||
|
||||
<p>
|
||||
Definition at line <a class="el" href="SmartyStatic__example_8php-source.html#l00100">100</a> of file <a class="el" href="SmartyStatic__example_8php-source.html">SmartyStatic_example.php</a>. </td>
|
||||
</tr>
|
||||
</table>
|
||||
<a class="anchor" name="a13" doxytag="SmartyStatic_example.php::compile_dir"></a><p>
|
||||
<table class="mdTable" cellpadding="2" cellspacing="0">
|
||||
<tr>
|
||||
<td class="mdRow">
|
||||
<table cellpadding="0" cellspacing="0" border="0">
|
||||
<tr>
|
||||
<td class="md" nowrap valign="top">$tpl <a class="el" href="SmartyStatic__example_8php.html#a13">compile_dir</a> = './templates_c' </td>
|
||||
</tr>
|
||||
</table>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
<table cellspacing="5" cellpadding="0" border="0">
|
||||
<tr>
|
||||
<td>
|
||||
|
||||
</td>
|
||||
<td>
|
||||
|
||||
<p>
|
||||
|
||||
<p>
|
||||
Definition at line <a class="el" href="SmartyStatic__example_8php-source.html#l00102">102</a> of file <a class="el" href="SmartyStatic__example_8php-source.html">SmartyStatic_example.php</a>. </td>
|
||||
</tr>
|
||||
</table>
|
||||
<a class="anchor" name="a12" doxytag="SmartyStatic_example.php::template_dir"></a><p>
|
||||
<table class="mdTable" cellpadding="2" cellspacing="0">
|
||||
<tr>
|
||||
<td class="mdRow">
|
||||
<table cellpadding="0" cellspacing="0" border="0">
|
||||
<tr>
|
||||
<td class="md" nowrap valign="top">$tpl <a class="el" href="SmartyStatic__example_8php.html#a12">template_dir</a> = './templates' </td>
|
||||
</tr>
|
||||
</table>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
<table cellspacing="5" cellpadding="0" border="0">
|
||||
<tr>
|
||||
<td>
|
||||
|
||||
</td>
|
||||
<td>
|
||||
|
||||
<p>
|
||||
|
||||
<p>
|
||||
Definition at line <a class="el" href="SmartyStatic__example_8php-source.html#l00101">101</a> of file <a class="el" href="SmartyStatic__example_8php-source.html">SmartyStatic_example.php</a>. </td>
|
||||
</tr>
|
||||
</table>
|
||||
<hr size="1"><address style="align: right;"><small>Generated on Wed Jan 12 13:58:48 2005 for LiveSupport - htmlUI module by
|
||||
<a href="http://www.doxygen.org/index.html">
|
||||
<img src="doxygen.png" alt="doxygen" align="middle" border="0"></a> 1.4.0 </small></address>
|
||||
</body>
|
||||
</html>
|
|
@ -1,17 +0,0 @@
|
|||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
|
||||
<html><head><meta http-equiv="Content-Type" content="text/html;charset=iso-8859-1">
|
||||
<title>LiveSupport&nbsp;-&nbsp;htmlUI&nbsp;module: Class List</title>
|
||||
<link href="doxygen.css" rel="stylesheet" type="text/css">
|
||||
</head><body>
|
||||
<!-- Generated by Doxygen 1.4.0 -->
|
||||
<div class="qindex"><a class="qindex" href="index.html">Main Page</a> | <a class="qindex" href="hierarchy.html">Class Hierarchy</a> | <a class="qindex" href="classes.html">Alphabetical List</a> | <a class="qindexHL" href="annotated.html">Class List</a> | <a class="qindex" href="dirs.html">Directories</a> | <a class="qindex" href="files.html">File List</a> | <a class="qindex" href="functions.html">Class Members</a> | <a class="qindex" href="globals.html">File Members</a></div>
|
||||
<h1>LiveSupport - htmlUI module Class List</h1>Here are the classes, structs, unions and interfaces with brief descriptions:<table>
|
||||
<tr><td class="indexkey"><a class="el" href="classuiBase.html">uiBase</a></td><td class="indexvalue">UiBase class </td></tr>
|
||||
<tr><td class="indexkey"><a class="el" href="classuiBrowser.html">uiBrowser</a></td><td class="indexvalue"></td></tr>
|
||||
<tr><td class="indexkey"><a class="el" href="classuiHandler.html">uiHandler</a></td><td class="indexvalue">UiHandler class </td></tr>
|
||||
</table>
|
||||
<hr size="1"><address style="align: right;"><small>Generated on Wed Jan 12 16:22:49 2005 for LiveSupport - htmlUI module by
|
||||
<a href="http://www.doxygen.org/index.html">
|
||||
<img src="doxygen.png" alt="doxygen" align="middle" border="0"></a> 1.4.0 </small></address>
|
||||
</body>
|
||||
</html>
|
|
@ -1,16 +0,0 @@
|
|||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
|
||||
<html><head><meta http-equiv="Content-Type" content="text/html;charset=iso-8859-1">
|
||||
<title>LiveSupport&nbsp;-&nbsp;htmlUI&nbsp;module: Alphabetical List</title>
|
||||
<link href="doxygen.css" rel="stylesheet" type="text/css">
|
||||
</head><body>
|
||||
<!-- Generated by Doxygen 1.4.0 -->
|
||||
<div class="qindex"><a class="qindex" href="index.html">Main Page</a> | <a class="qindex" href="hierarchy.html">Class Hierarchy</a> | <a class="qindexHL" href="classes.html">Alphabetical List</a> | <a class="qindex" href="annotated.html">Class List</a> | <a class="qindex" href="dirs.html">Directories</a> | <a class="qindex" href="files.html">File List</a> | <a class="qindex" href="functions.html">Class Members</a> | <a class="qindex" href="globals.html">File Members</a></div>
|
||||
<h1>LiveSupport - htmlUI module Class Index</h1><p><div class="qindex"><a class="qindex" href="#letter_U">U</a></div><p>
|
||||
<table align="center" width="95%" border="0" cellspacing="0" cellpadding="0">
|
||||
<tr><td><a name="letter_U"></a><table border="0" cellspacing="0" cellpadding="0"><tr><td><div class="ah"> U </div></td></tr></table>
|
||||
</td><td><a class="el" href="classuiBase.html">uiBase</a> </td><td><a class="el" href="classuiBrowser.html">uiBrowser</a> </td><td><a class="el" href="classuiHandler.html">uiHandler</a> </td></tr></table><p><div class="qindex"><a class="qindex" href="#letter_U">U</a></div><p>
|
||||
<hr size="1"><address style="align: right;"><small>Generated on Wed Jan 12 16:22:49 2005 for LiveSupport - htmlUI module by
|
||||
<a href="http://www.doxygen.org/index.html">
|
||||
<img src="doxygen.png" alt="doxygen" align="middle" border="0"></a> 1.4.0 </small></address>
|
||||
</body>
|
||||
</html>
|
|
@ -1,15 +0,0 @@
|
|||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
|
||||
<html><head><meta http-equiv="Content-Type" content="text/html;charset=iso-8859-1">
|
||||
<title>LiveSupport&nbsp;-&nbsp;htmlUI&nbsp;module: Member List</title>
|
||||
<link href="doxygen.css" rel="stylesheet" type="text/css">
|
||||
</head><body>
|
||||
<!-- Generated by Doxygen 1.4.0 -->
|
||||
<div class="qindex"><a class="qindex" href="index.html">Main Page</a> | <a class="qindex" href="hierarchy.html">Class Hierarchy</a> | <a class="qindex" href="classes.html">Alphabetical List</a> | <a class="qindex" href="annotated.html">Class List</a> | <a class="qindex" href="dirs.html">Directories</a> | <a class="qindex" href="files.html">File List</a> | <a class="qindex" href="functions.html">Class Members</a> | <a class="qindex" href="globals.html">File Members</a></div>
|
||||
<h1>uiBase Member List</h1>This is the complete list of members for <a class="el" href="classuiBase.html">uiBase</a>, including all inherited members.<p><table>
|
||||
<tr class="memlist"><td><a class="el" href="classuiBase.html#a1">_parseArr2Form</a>(&$form, &$mask, $side='client')</td><td><a class="el" href="classuiBase.html">uiBase</a></td><td></td></tr>
|
||||
<tr class="memlist"><td><a class="el" href="classuiBase.html#a0">tra</a>($input)</td><td><a class="el" href="classuiBase.html">uiBase</a></td><td></td></tr>
|
||||
</table><hr size="1"><address style="align: right;"><small>Generated on Wed Jan 12 16:22:49 2005 for LiveSupport - htmlUI module by
|
||||
<a href="http://www.doxygen.org/index.html">
|
||||
<img src="doxygen.png" alt="doxygen" align="middle" border="0"></a> 1.4.0 </small></address>
|
||||
</body>
|
||||
</html>
|
|
@ -1,141 +0,0 @@
|
|||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
|
||||
<html><head><meta http-equiv="Content-Type" content="text/html;charset=iso-8859-1">
|
||||
<title>LiveSupport&nbsp;-&nbsp;htmlUI&nbsp;module: uiBase Class Reference</title>
|
||||
<link href="doxygen.css" rel="stylesheet" type="text/css">
|
||||
</head><body>
|
||||
<!-- Generated by Doxygen 1.4.0 -->
|
||||
<div class="qindex"><a class="qindex" href="index.html">Main Page</a> | <a class="qindex" href="hierarchy.html">Class Hierarchy</a> | <a class="qindex" href="classes.html">Alphabetical List</a> | <a class="qindex" href="annotated.html">Class List</a> | <a class="qindex" href="dirs.html">Directories</a> | <a class="qindex" href="files.html">File List</a> | <a class="qindex" href="functions.html">Class Members</a> | <a class="qindex" href="globals.html">File Members</a></div>
|
||||
<h1>uiBase Class Reference</h1>uiBase class
|
||||
<a href="#_details">More...</a>
|
||||
<p>
|
||||
<p>Inheritance diagram for uiBase:
|
||||
<p><center><img src="classuiBase.png" usemap="#uiBase_map" border="0" alt=""></center>
|
||||
<map name="uiBase_map">
|
||||
<area href="classuiBrowser.html" alt="uiBrowser" shape="rect" coords="0,56,69,80">
|
||||
<area href="classuiHandler.html" alt="uiHandler" shape="rect" coords="79,56,148,80">
|
||||
</map>
|
||||
<a href="classuiBase-members.html">List of all members.</a><table border="0" cellpadding="0" cellspacing="0">
|
||||
<tr><td></td></tr>
|
||||
<tr><td colspan="2"><br><h2>Public Member Functions</h2></td></tr>
|
||||
<tr><td class="memItemLeft" nowrap align="right" valign="top"> </td><td class="memItemRight" valign="bottom"><a class="el" href="classuiBase.html#a0">tra</a> ($input)</td></tr>
|
||||
|
||||
<tr><td class="mdescLeft"> </td><td class="mdescRight">tra <a href="#a0"></a><br></td></tr>
|
||||
<tr><td class="memItemLeft" nowrap align="right" valign="top"> </td><td class="memItemRight" valign="bottom"><a class="el" href="classuiBase.html#a1">_parseArr2Form</a> (&$form, &$mask, $side='client')</td></tr>
|
||||
|
||||
<tr><td class="mdescLeft"> </td><td class="mdescRight">_parseArr2Form <a href="#a1"></a><br></td></tr>
|
||||
</table>
|
||||
<hr><a name="_details"></a><h2>Detailed Description</h2>
|
||||
uiBase class
|
||||
<p>
|
||||
LiveSupport HTML User Interface module
|
||||
<p>
|
||||
|
||||
<p>
|
||||
Definition at line <a class="el" href="ui__base_8inc_8php-source.html#l00017">17</a> of file <a class="el" href="ui__base_8inc_8php-source.html">ui_base.inc.php</a>.<hr><h2>Member Function Documentation</h2>
|
||||
<a class="anchor" name="a1" doxytag="uiBase::_parseArr2Form"></a><p>
|
||||
<table class="mdTable" cellpadding="2" cellspacing="0">
|
||||
<tr>
|
||||
<td class="mdRow">
|
||||
<table cellpadding="0" cellspacing="0" border="0">
|
||||
<tr>
|
||||
<td class="md" nowrap valign="top">uiBase::_parseArr2Form </td>
|
||||
<td class="md" valign="top">( </td>
|
||||
<td class="md" nowrap valign="top">&$ </td>
|
||||
<td class="mdname" nowrap> <em>form</em>, </td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="md" nowrap align="right"></td>
|
||||
<td class="md"></td>
|
||||
<td class="md" nowrap>&$ </td>
|
||||
<td class="mdname" nowrap> <em>mask</em>, </td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="md" nowrap align="right"></td>
|
||||
<td class="md"></td>
|
||||
<td class="md" nowrap>$ </td>
|
||||
<td class="mdname" nowrap> <em>side</em> = <code>'client'</code></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="md"></td>
|
||||
<td class="md">) </td>
|
||||
<td class="md" colspan="2"></td>
|
||||
</tr>
|
||||
</table>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
<table cellspacing="5" cellpadding="0" border="0">
|
||||
<tr>
|
||||
<td>
|
||||
|
||||
</td>
|
||||
<td>
|
||||
|
||||
<p>
|
||||
_parseArr2Form
|
||||
<p>
|
||||
Add elements/rules/groups to an given HTML_QuickForm object<p>
|
||||
<dl compact><dt><b>Parameters:</b></dt><dd>
|
||||
<table border="0" cellspacing="2" cellpadding="0">
|
||||
<tr><td valign="top"></td><td valign="top"><em>form</em> </td><td>object, reference to HTML_QuickForm object </td></tr>
|
||||
<tr><td valign="top"></td><td valign="top"><em>mask</em> </td><td>array, reference to array defining to form elements </td></tr>
|
||||
<tr><td valign="top"></td><td valign="top"><em>side</em> </td><td>string, side where the validation should beeing </td></tr>
|
||||
</table>
|
||||
</dl>
|
||||
|
||||
<p>
|
||||
Definition at line <a class="el" href="ui__base_8inc_8php-source.html#l00045">45</a> of file <a class="el" href="ui__base_8inc_8php-source.html">ui_base.inc.php</a>.
|
||||
<p>
|
||||
References <a class="el" href="ui__base_8inc_8php-source.html#l00028">tra()</a>.
|
||||
<p>
|
||||
Referenced by <a class="el" href="ui__handler_8class_8php-source.html#l00429">uiHandler::_validateForm()</a>, <a class="el" href="ui__browser_8class_8php-source.html#l00193">uiBrowser::getAddSubjectForm()</a>, <a class="el" href="ui__browser_8class_8php-source.html#l00402">uiBrowser::getMetadataForm()</a>, <a class="el" href="ui__browser_8class_8php-source.html#l00139">uiBrowser::getNewFileForm()</a>, <a class="el" href="ui__browser_8class_8php-source.html#l00160">uiBrowser::getSearchForm()</a>, <a class="el" href="ui__browser_8class_8php-source.html#l00057">uiBrowser::loginform()</a>, and <a class="el" href="ui__browser_8class_8php-source.html#l00416">uiBrowser::systemPrefs()</a>. </td>
|
||||
</tr>
|
||||
</table>
|
||||
<a class="anchor" name="a0" doxytag="uiBase::tra"></a><p>
|
||||
<table class="mdTable" cellpadding="2" cellspacing="0">
|
||||
<tr>
|
||||
<td class="mdRow">
|
||||
<table cellpadding="0" cellspacing="0" border="0">
|
||||
<tr>
|
||||
<td class="md" nowrap valign="top">uiBase::tra </td>
|
||||
<td class="md" valign="top">( </td>
|
||||
<td class="md" nowrap valign="top">$ </td>
|
||||
<td class="mdname1" valign="top" nowrap> <em>input</em> </td>
|
||||
<td class="md" valign="top"> ) </td>
|
||||
<td class="md" nowrap></td>
|
||||
</tr>
|
||||
</table>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
<table cellspacing="5" cellpadding="0" border="0">
|
||||
<tr>
|
||||
<td>
|
||||
|
||||
</td>
|
||||
<td>
|
||||
|
||||
<p>
|
||||
tra
|
||||
<p>
|
||||
Translate the given string using localisation files.<p>
|
||||
<dl compact><dt><b>Parameters:</b></dt><dd>
|
||||
<table border="0" cellspacing="2" cellpadding="0">
|
||||
<tr><td valign="top"></td><td valign="top"><em>input</em> </td><td>string, string to translate </td></tr>
|
||||
</table>
|
||||
</dl>
|
||||
<dl compact><dt><b>Returns:</b></dt><dd>string, translated string </dd></dl>
|
||||
|
||||
<p>
|
||||
Definition at line <a class="el" href="ui__base_8inc_8php-source.html#l00028">28</a> of file <a class="el" href="ui__base_8inc_8php-source.html">ui_base.inc.php</a>.
|
||||
<p>
|
||||
Referenced by <a class="el" href="ui__base_8inc_8php-source.html#l00045">_parseArr2Form()</a>, <a class="el" href="ui__handler_8class_8php-source.html#l00266">uiHandler::addSubj()</a>, <a class="el" href="ui__handler_8class_8php-source.html#l00187">uiHandler::delete()</a>, and <a class="el" href="ui__handler_8class_8php-source.html#l00418">uiHandler::storeSystemPrefs()</a>. </td>
|
||||
</tr>
|
||||
</table>
|
||||
<hr>The documentation for this class was generated from the following file:<ul>
|
||||
<li><a class="el" href="ui__base_8inc_8php-source.html">ui_base.inc.php</a></ul>
|
||||
<hr size="1"><address style="align: right;"><small>Generated on Wed Jan 12 16:22:49 2005 for LiveSupport - htmlUI module by
|
||||
<a href="http://www.doxygen.org/index.html">
|
||||
<img src="doxygen.png" alt="doxygen" align="middle" border="0"></a> 1.4.0 </small></address>
|
||||
</body>
|
||||
</html>
|
Binary file not shown.
Before Width: | Height: | Size: 439 B |
|
@ -1,36 +0,0 @@
|
|||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
|
||||
<html><head><meta http-equiv="Content-Type" content="text/html;charset=iso-8859-1">
|
||||
<title>LiveSupport&nbsp;-&nbsp;htmlUI&nbsp;module: Member List</title>
|
||||
<link href="doxygen.css" rel="stylesheet" type="text/css">
|
||||
</head><body>
|
||||
<!-- Generated by Doxygen 1.4.0 -->
|
||||
<div class="qindex"><a class="qindex" href="index.html">Main Page</a> | <a class="qindex" href="hierarchy.html">Class Hierarchy</a> | <a class="qindex" href="classes.html">Alphabetical List</a> | <a class="qindex" href="annotated.html">Class List</a> | <a class="qindex" href="dirs.html">Directories</a> | <a class="qindex" href="files.html">File List</a> | <a class="qindex" href="functions.html">Class Members</a> | <a class="qindex" href="globals.html">File Members</a></div>
|
||||
<h1>uiBrowser Member List</h1>This is the complete list of members for <a class="el" href="classuiBrowser.html">uiBrowser</a>, including all inherited members.<p><table>
|
||||
<tr class="memlist"><td><a class="el" href="classuiBrowser.html#o0">$alertMsg</a></td><td><a class="el" href="classuiBrowser.html">uiBrowser</a></td><td></td></tr>
|
||||
<tr class="memlist"><td><a class="el" href="classuiBase.html#a1">_parseArr2Form</a>(&$form, &$mask, $side='client')</td><td><a class="el" href="classuiBase.html">uiBase</a></td><td></td></tr>
|
||||
<tr class="memlist"><td><a class="el" href="classuiBrowser.html#a1">alertMsg</a>()</td><td><a class="el" href="classuiBrowser.html">uiBrowser</a></td><td></td></tr>
|
||||
<tr class="memlist"><td><a class="el" href="classuiBrowser.html#a8">getAddSubjectForm</a>($mask)</td><td><a class="el" href="classuiBrowser.html">uiBrowser</a></td><td></td></tr>
|
||||
<tr class="memlist"><td><a class="el" href="classuiBrowser.html#a9">getChangePasswdForm</a>($uid)</td><td><a class="el" href="classuiBrowser.html">uiBrowser</a></td><td></td></tr>
|
||||
<tr class="memlist"><td><a class="el" href="classuiBrowser.html#a15">getFile</a>($id)</td><td><a class="el" href="classuiBrowser.html">uiBrowser</a></td><td></td></tr>
|
||||
<tr class="memlist"><td><a class="el" href="classuiBrowser.html#a10">getGroups</a>($id)</td><td><a class="el" href="classuiBrowser.html">uiBrowser</a></td><td></td></tr>
|
||||
<tr class="memlist"><td><a class="el" href="classuiBrowser.html#a17">getInfo</a>($id)</td><td><a class="el" href="classuiBrowser.html">uiBrowser</a></td><td></td></tr>
|
||||
<tr class="memlist"><td><a class="el" href="classuiBrowser.html#a16">getMdata</a>($id)</td><td><a class="el" href="classuiBrowser.html">uiBrowser</a></td><td></td></tr>
|
||||
<tr class="memlist"><td><a class="el" href="classuiBrowser.html#a18">getMetadataForm</a>($id, &$mask)</td><td><a class="el" href="classuiBrowser.html">uiBrowser</a></td><td></td></tr>
|
||||
<tr class="memlist"><td><a class="el" href="classuiBrowser.html#a13">getNewFileData</a>($id)</td><td><a class="el" href="classuiBrowser.html">uiBrowser</a></td><td></td></tr>
|
||||
<tr class="memlist"><td><a class="el" href="classuiBrowser.html#a5">getNewFileForm</a>($id, $mask)</td><td><a class="el" href="classuiBrowser.html">uiBrowser</a></td><td></td></tr>
|
||||
<tr class="memlist"><td><a class="el" href="classuiBrowser.html#a12">getPermissions</a>($id)</td><td><a class="el" href="classuiBrowser.html">uiBrowser</a></td><td></td></tr>
|
||||
<tr class="memlist"><td><a class="el" href="classuiBrowser.html#a6">getSearchForm</a>($id, &$mask)</td><td><a class="el" href="classuiBrowser.html">uiBrowser</a></td><td></td></tr>
|
||||
<tr class="memlist"><td><a class="el" href="classuiBrowser.html#a14">getSearchRes</a>($id, $search)</td><td><a class="el" href="classuiBrowser.html">uiBrowser</a></td><td></td></tr>
|
||||
<tr class="memlist"><td><a class="el" href="classuiBrowser.html#a4">getStructure</a>($id, $homedir=FALSE)</td><td><a class="el" href="classuiBrowser.html">uiBrowser</a></td><td></td></tr>
|
||||
<tr class="memlist"><td><a class="el" href="classuiBrowser.html#a11">getSubj2GroupForm</a>($id)</td><td><a class="el" href="classuiBrowser.html">uiBrowser</a></td><td></td></tr>
|
||||
<tr class="memlist"><td><a class="el" href="classuiBrowser.html#a7">getSubjects</a>()</td><td><a class="el" href="classuiBrowser.html">uiBrowser</a></td><td></td></tr>
|
||||
<tr class="memlist"><td><a class="el" href="classuiBrowser.html#a3">getUserInfo</a>()</td><td><a class="el" href="classuiBrowser.html">uiBrowser</a></td><td></td></tr>
|
||||
<tr class="memlist"><td><a class="el" href="classuiBrowser.html#a2">loginform</a>(&$Smarty, &$mask)</td><td><a class="el" href="classuiBrowser.html">uiBrowser</a></td><td></td></tr>
|
||||
<tr class="memlist"><td><a class="el" href="classuiBrowser.html#a19">systemPrefs</a>(&$mask)</td><td><a class="el" href="classuiBrowser.html">uiBrowser</a></td><td></td></tr>
|
||||
<tr class="memlist"><td><a class="el" href="classuiBase.html#a0">tra</a>($input)</td><td><a class="el" href="classuiBase.html">uiBase</a></td><td></td></tr>
|
||||
<tr class="memlist"><td><a class="el" href="classuiBrowser.html#a0">uiBrowser</a>($config)</td><td><a class="el" href="classuiBrowser.html">uiBrowser</a></td><td></td></tr>
|
||||
</table><hr size="1"><address style="align: right;"><small>Generated on Wed Jan 12 16:22:49 2005 for LiveSupport - htmlUI module by
|
||||
<a href="http://www.doxygen.org/index.html">
|
||||
<img src="doxygen.png" alt="doxygen" align="middle" border="0"></a> 1.4.0 </small></address>
|
||||
</body>
|
||||
</html>
|
|
@ -1,938 +0,0 @@
|
|||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
|
||||
<html><head><meta http-equiv="Content-Type" content="text/html;charset=iso-8859-1">
|
||||
<title>LiveSupport&nbsp;-&nbsp;htmlUI&nbsp;module: uiBrowser Class Reference</title>
|
||||
<link href="doxygen.css" rel="stylesheet" type="text/css">
|
||||
</head><body>
|
||||
<!-- Generated by Doxygen 1.4.0 -->
|
||||
<div class="qindex"><a class="qindex" href="index.html">Main Page</a> | <a class="qindex" href="hierarchy.html">Class Hierarchy</a> | <a class="qindex" href="classes.html">Alphabetical List</a> | <a class="qindex" href="annotated.html">Class List</a> | <a class="qindex" href="dirs.html">Directories</a> | <a class="qindex" href="files.html">File List</a> | <a class="qindex" href="functions.html">Class Members</a> | <a class="qindex" href="globals.html">File Members</a></div>
|
||||
<h1>uiBrowser Class Reference</h1><p>Inheritance diagram for uiBrowser:
|
||||
<p><center><img src="classuiBrowser.png" usemap="#uiBrowser_map" border="0" alt=""></center>
|
||||
<map name="uiBrowser_map">
|
||||
<area href="classuiBase.html" alt="uiBase" shape="rect" coords="0,0,69,24">
|
||||
</map>
|
||||
<a href="classuiBrowser-members.html">List of all members.</a><table border="0" cellpadding="0" cellspacing="0">
|
||||
<tr><td></td></tr>
|
||||
<tr><td colspan="2"><br><h2>Public Member Functions</h2></td></tr>
|
||||
<tr><td class="memItemLeft" nowrap align="right" valign="top"> </td><td class="memItemRight" valign="bottom"><a class="el" href="classuiBrowser.html#a0">uiBrowser</a> ($config)</td></tr>
|
||||
|
||||
<tr><td class="mdescLeft"> </td><td class="mdescRight">uiBrowser <a href="#a0"></a><br></td></tr>
|
||||
<tr><td class="memItemLeft" nowrap align="right" valign="top"> </td><td class="memItemRight" valign="bottom"><a class="el" href="classuiBrowser.html#a1">alertMsg</a> ()</td></tr>
|
||||
|
||||
<tr><td class="mdescLeft"> </td><td class="mdescRight">alertMsg <a href="#a1"></a><br></td></tr>
|
||||
<tr><td class="memItemLeft" nowrap align="right" valign="top"> </td><td class="memItemRight" valign="bottom"><a class="el" href="classuiBrowser.html#a2">loginform</a> (&$Smarty, &$mask)</td></tr>
|
||||
|
||||
<tr><td class="mdescLeft"> </td><td class="mdescRight">loginform <a href="#a2"></a><br></td></tr>
|
||||
<tr><td class="memItemLeft" nowrap align="right" valign="top"> </td><td class="memItemRight" valign="bottom"><a class="el" href="classuiBrowser.html#a3">getUserInfo</a> ()</td></tr>
|
||||
|
||||
<tr><td class="mdescLeft"> </td><td class="mdescRight">getUserInfo <a href="#a3"></a><br></td></tr>
|
||||
<tr><td class="memItemLeft" nowrap align="right" valign="top"> </td><td class="memItemRight" valign="bottom"><a class="el" href="classuiBrowser.html#a4">getStructure</a> ($<a class="el" href="ui__handler_8php.html#a4">id</a>, $homedir=FALSE)</td></tr>
|
||||
|
||||
<tr><td class="mdescLeft"> </td><td class="mdescRight">getStructure <a href="#a4"></a><br></td></tr>
|
||||
<tr><td class="memItemLeft" nowrap align="right" valign="top"> </td><td class="memItemRight" valign="bottom"><a class="el" href="classuiBrowser.html#a5">getNewFileForm</a> ($<a class="el" href="ui__handler_8php.html#a4">id</a>, $mask)</td></tr>
|
||||
|
||||
<tr><td class="mdescLeft"> </td><td class="mdescRight">getNewFileForm <a href="#a5"></a><br></td></tr>
|
||||
<tr><td class="memItemLeft" nowrap align="right" valign="top"> </td><td class="memItemRight" valign="bottom"><a class="el" href="classuiBrowser.html#a6">getSearchForm</a> ($<a class="el" href="ui__handler_8php.html#a4">id</a>, &$mask)</td></tr>
|
||||
|
||||
<tr><td class="mdescLeft"> </td><td class="mdescRight">getSearchForm <a href="#a6"></a><br></td></tr>
|
||||
<tr><td class="memItemLeft" nowrap align="right" valign="top"> </td><td class="memItemRight" valign="bottom"><a class="el" href="classuiBrowser.html#a7">getSubjects</a> ()</td></tr>
|
||||
|
||||
<tr><td class="mdescLeft"> </td><td class="mdescRight">getSubjects <a href="#a7"></a><br></td></tr>
|
||||
<tr><td class="memItemLeft" nowrap align="right" valign="top"> </td><td class="memItemRight" valign="bottom"><a class="el" href="classuiBrowser.html#a8">getAddSubjectForm</a> ($mask)</td></tr>
|
||||
|
||||
<tr><td class="mdescLeft"> </td><td class="mdescRight">addSubjectForm <a href="#a8"></a><br></td></tr>
|
||||
<tr><td class="memItemLeft" nowrap align="right" valign="top"> </td><td class="memItemRight" valign="bottom"><a class="el" href="classuiBrowser.html#a9">getChangePasswdForm</a> ($uid)</td></tr>
|
||||
|
||||
<tr><td class="mdescLeft"> </td><td class="mdescRight">getChangePasswdForm <a href="#a9"></a><br></td></tr>
|
||||
<tr><td class="memItemLeft" nowrap align="right" valign="top"> </td><td class="memItemRight" valign="bottom"><a class="el" href="classuiBrowser.html#a10">getGroups</a> ($<a class="el" href="ui__handler_8php.html#a4">id</a>)</td></tr>
|
||||
|
||||
<tr><td class="mdescLeft"> </td><td class="mdescRight">getGroups <a href="#a10"></a><br></td></tr>
|
||||
<tr><td class="memItemLeft" nowrap align="right" valign="top"> </td><td class="memItemRight" valign="bottom"><a class="el" href="classuiBrowser.html#a11">getSubj2GroupForm</a> ($<a class="el" href="ui__handler_8php.html#a4">id</a>)</td></tr>
|
||||
|
||||
<tr><td class="mdescLeft"> </td><td class="mdescRight">getSubj2GroupForm <a href="#a11"></a><br></td></tr>
|
||||
<tr><td class="memItemLeft" nowrap align="right" valign="top"> </td><td class="memItemRight" valign="bottom"><a class="el" href="classuiBrowser.html#a12">getPermissions</a> ($<a class="el" href="ui__handler_8php.html#a4">id</a>)</td></tr>
|
||||
|
||||
<tr><td class="mdescLeft"> </td><td class="mdescRight">getPermissions <a href="#a12"></a><br></td></tr>
|
||||
<tr><td class="memItemLeft" nowrap align="right" valign="top"> </td><td class="memItemRight" valign="bottom"><a class="el" href="classuiBrowser.html#a13">getNewFileData</a> ($<a class="el" href="ui__handler_8php.html#a4">id</a>)</td></tr>
|
||||
|
||||
<tr><td class="mdescLeft"> </td><td class="mdescRight">getNewFileData <a href="#a13"></a><br></td></tr>
|
||||
<tr><td class="memItemLeft" nowrap align="right" valign="top"> </td><td class="memItemRight" valign="bottom"><a class="el" href="classuiBrowser.html#a14">getSearchRes</a> ($<a class="el" href="ui__handler_8php.html#a4">id</a>, $<a class="el" href="ui__browser_8php.html#a4">search</a>)</td></tr>
|
||||
|
||||
<tr><td class="mdescLeft"> </td><td class="mdescRight">getSearchRes <a href="#a14"></a><br></td></tr>
|
||||
<tr><td class="memItemLeft" nowrap align="right" valign="top"> </td><td class="memItemRight" valign="bottom"><a class="el" href="classuiBrowser.html#a15">getFile</a> ($<a class="el" href="ui__handler_8php.html#a4">id</a>)</td></tr>
|
||||
|
||||
<tr><td class="mdescLeft"> </td><td class="mdescRight">getFile <a href="#a15"></a><br></td></tr>
|
||||
<tr><td class="memItemLeft" nowrap align="right" valign="top"> </td><td class="memItemRight" valign="bottom"><a class="el" href="classuiBrowser.html#a16">getMdata</a> ($<a class="el" href="ui__handler_8php.html#a4">id</a>)</td></tr>
|
||||
|
||||
<tr><td class="mdescLeft"> </td><td class="mdescRight">getMdata <a href="#a16"></a><br></td></tr>
|
||||
<tr><td class="memItemLeft" nowrap align="right" valign="top"> </td><td class="memItemRight" valign="bottom"><a class="el" href="classuiBrowser.html#a17">getInfo</a> ($<a class="el" href="ui__handler_8php.html#a4">id</a>)</td></tr>
|
||||
|
||||
<tr><td class="mdescLeft"> </td><td class="mdescRight">getInfo <a href="#a17"></a><br></td></tr>
|
||||
<tr><td class="memItemLeft" nowrap align="right" valign="top"> </td><td class="memItemRight" valign="bottom"><a class="el" href="classuiBrowser.html#a18">getMetadataForm</a> ($<a class="el" href="ui__handler_8php.html#a4">id</a>, &$mask)</td></tr>
|
||||
|
||||
<tr><td class="mdescLeft"> </td><td class="mdescRight">getMetaDataForm <a href="#a18"></a><br></td></tr>
|
||||
<tr><td class="memItemLeft" nowrap align="right" valign="top"> </td><td class="memItemRight" valign="bottom"><a class="el" href="classuiBrowser.html#a19">systemPrefs</a> (&$mask)</td></tr>
|
||||
|
||||
<tr><td colspan="2"><br><h2>Public Attributes</h2></td></tr>
|
||||
<tr><td class="memItemLeft" nowrap align="right" valign="top"> </td><td class="memItemRight" valign="bottom"><a class="el" href="classuiBrowser.html#o0">$alertMsg</a></td></tr>
|
||||
|
||||
</table>
|
||||
<hr><h2>Constructor & Destructor Documentation</h2>
|
||||
<a class="anchor" name="a0" doxytag="uiBrowser::uiBrowser"></a><p>
|
||||
<table class="mdTable" cellpadding="2" cellspacing="0">
|
||||
<tr>
|
||||
<td class="mdRow">
|
||||
<table cellpadding="0" cellspacing="0" border="0">
|
||||
<tr>
|
||||
<td class="md" nowrap valign="top">uiBrowser::uiBrowser </td>
|
||||
<td class="md" valign="top">( </td>
|
||||
<td class="md" nowrap valign="top">$ </td>
|
||||
<td class="mdname1" valign="top" nowrap> <em>config</em> </td>
|
||||
<td class="md" valign="top"> ) </td>
|
||||
<td class="md" nowrap></td>
|
||||
</tr>
|
||||
</table>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
<table cellspacing="5" cellpadding="0" border="0">
|
||||
<tr>
|
||||
<td>
|
||||
|
||||
</td>
|
||||
<td>
|
||||
|
||||
<p>
|
||||
uiBrowser
|
||||
<p>
|
||||
Initialize a new Browser Class including:<ul>
|
||||
<li>database initialation</li><li>GreenBox initialation</li></ul>
|
||||
<p>
|
||||
<dl compact><dt><b>Parameters:</b></dt><dd>
|
||||
<table border="0" cellspacing="2" cellpadding="0">
|
||||
<tr><td valign="top"></td><td valign="top"><em>$config</em> </td><td>array, configurartion data </td></tr>
|
||||
</table>
|
||||
</dl>
|
||||
|
||||
<p>
|
||||
Definition at line <a class="el" href="ui__browser_8class_8php-source.html#l00015">15</a> of file <a class="el" href="ui__browser_8class_8php-source.html">ui_browser.class.php</a>.
|
||||
<p>
|
||||
References <a class="el" href="ui__handler_8php-source.html#l00067">$_REQUEST</a>, and <a class="el" href="conf_8php-source.html#l00049">$config</a>. </td>
|
||||
</tr>
|
||||
</table>
|
||||
<hr><h2>Member Function Documentation</h2>
|
||||
<a class="anchor" name="a1" doxytag="uiBrowser::alertMsg"></a><p>
|
||||
<table class="mdTable" cellpadding="2" cellspacing="0">
|
||||
<tr>
|
||||
<td class="mdRow">
|
||||
<table cellpadding="0" cellspacing="0" border="0">
|
||||
<tr>
|
||||
<td class="md" nowrap valign="top">uiBrowser::alertMsg </td>
|
||||
<td class="md" valign="top">( </td>
|
||||
<td class="mdname1" valign="top" nowrap> </td>
|
||||
<td class="md" valign="top"> ) </td>
|
||||
<td class="md" nowrap></td>
|
||||
</tr>
|
||||
</table>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
<table cellspacing="5" cellpadding="0" border="0">
|
||||
<tr>
|
||||
<td>
|
||||
|
||||
</td>
|
||||
<td>
|
||||
|
||||
<p>
|
||||
alertMsg
|
||||
<p>
|
||||
takes error message from session var<p>
|
||||
<dl compact><dt><b>Returns:</b></dt><dd>string </dd></dl>
|
||||
|
||||
<p>
|
||||
Definition at line <a class="el" href="ui__browser_8class_8php-source.html#l00038">38</a> of file <a class="el" href="ui__browser_8class_8php-source.html">ui_browser.class.php</a>.
|
||||
<p>
|
||||
References <a class="el" href="ui__browser_8class_8php-source.html#l00038">alertMsg()</a>.
|
||||
<p>
|
||||
Referenced by <a class="el" href="ui__browser_8class_8php-source.html#l00038">alertMsg()</a>, and <a class="el" href="ui__browser_8class_8php-source.html#l00353">getFile()</a>. </td>
|
||||
</tr>
|
||||
</table>
|
||||
<a class="anchor" name="a8" doxytag="uiBrowser::getAddSubjectForm"></a><p>
|
||||
<table class="mdTable" cellpadding="2" cellspacing="0">
|
||||
<tr>
|
||||
<td class="mdRow">
|
||||
<table cellpadding="0" cellspacing="0" border="0">
|
||||
<tr>
|
||||
<td class="md" nowrap valign="top">uiBrowser::getAddSubjectForm </td>
|
||||
<td class="md" valign="top">( </td>
|
||||
<td class="md" nowrap valign="top">$ </td>
|
||||
<td class="mdname1" valign="top" nowrap> <em>mask</em> </td>
|
||||
<td class="md" valign="top"> ) </td>
|
||||
<td class="md" nowrap></td>
|
||||
</tr>
|
||||
</table>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
<table cellspacing="5" cellpadding="0" border="0">
|
||||
<tr>
|
||||
<td>
|
||||
|
||||
</td>
|
||||
<td>
|
||||
|
||||
<p>
|
||||
addSubjectForm
|
||||
<p>
|
||||
create a form to add GreenBox subjects (users/groups)<p>
|
||||
<dl compact><dt><b>Returns:</b></dt><dd>string (html) </dd></dl>
|
||||
|
||||
<p>
|
||||
Definition at line <a class="el" href="ui__browser_8class_8php-source.html#l00193">193</a> of file <a class="el" href="ui__browser_8class_8php-source.html">ui_browser.class.php</a>.
|
||||
<p>
|
||||
References <a class="el" href="ui__base_8inc_8php-source.html#l00045">uiBase::_parseArr2Form()</a>. </td>
|
||||
</tr>
|
||||
</table>
|
||||
<a class="anchor" name="a9" doxytag="uiBrowser::getChangePasswdForm"></a><p>
|
||||
<table class="mdTable" cellpadding="2" cellspacing="0">
|
||||
<tr>
|
||||
<td class="mdRow">
|
||||
<table cellpadding="0" cellspacing="0" border="0">
|
||||
<tr>
|
||||
<td class="md" nowrap valign="top">uiBrowser::getChangePasswdForm </td>
|
||||
<td class="md" valign="top">( </td>
|
||||
<td class="md" nowrap valign="top">$ </td>
|
||||
<td class="mdname1" valign="top" nowrap> <em>uid</em> </td>
|
||||
<td class="md" valign="top"> ) </td>
|
||||
<td class="md" nowrap></td>
|
||||
</tr>
|
||||
</table>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
<table cellspacing="5" cellpadding="0" border="0">
|
||||
<tr>
|
||||
<td>
|
||||
|
||||
</td>
|
||||
<td>
|
||||
|
||||
<p>
|
||||
getChangePasswdForm
|
||||
<p>
|
||||
create a form to change user-passwords in GreenBox<p>
|
||||
<dl compact><dt><b>Returns:</b></dt><dd>string (html) </dd></dl>
|
||||
|
||||
<p>
|
||||
Definition at line <a class="el" href="ui__browser_8class_8php-source.html#l00214">214</a> of file <a class="el" href="ui__browser_8class_8php-source.html">ui_browser.class.php</a>.
|
||||
<p>
|
||||
References <a class="el" href="ui__handler_8php-source.html#l00051">changePasswd</a>. </td>
|
||||
</tr>
|
||||
</table>
|
||||
<a class="anchor" name="a15" doxytag="uiBrowser::getFile"></a><p>
|
||||
<table class="mdTable" cellpadding="2" cellspacing="0">
|
||||
<tr>
|
||||
<td class="mdRow">
|
||||
<table cellpadding="0" cellspacing="0" border="0">
|
||||
<tr>
|
||||
<td class="md" nowrap valign="top">uiBrowser::getFile </td>
|
||||
<td class="md" valign="top">( </td>
|
||||
<td class="md" nowrap valign="top">$ </td>
|
||||
<td class="mdname1" valign="top" nowrap> <em>id</em> </td>
|
||||
<td class="md" valign="top"> ) </td>
|
||||
<td class="md" nowrap></td>
|
||||
</tr>
|
||||
</table>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
<table cellspacing="5" cellpadding="0" border="0">
|
||||
<tr>
|
||||
<td>
|
||||
|
||||
</td>
|
||||
<td>
|
||||
|
||||
<p>
|
||||
getFile
|
||||
<p>
|
||||
Call access method and show access path. Example only - not really useable. TODO: resource should be released by release method call<p>
|
||||
<dl compact><dt><b>Parameters:</b></dt><dd>
|
||||
<table border="0" cellspacing="2" cellpadding="0">
|
||||
<tr><td valign="top"></td><td valign="top"><em>id</em> </td><td>int, local id of accessed file </td></tr>
|
||||
</table>
|
||||
</dl>
|
||||
|
||||
<p>
|
||||
Definition at line <a class="el" href="ui__browser_8class_8php-source.html#l00353">353</a> of file <a class="el" href="ui__browser_8class_8php-source.html">ui_browser.class.php</a>.
|
||||
<p>
|
||||
References <a class="el" href="ui__browser_8class_8php-source.html#l00038">alertMsg()</a>. </td>
|
||||
</tr>
|
||||
</table>
|
||||
<a class="anchor" name="a10" doxytag="uiBrowser::getGroups"></a><p>
|
||||
<table class="mdTable" cellpadding="2" cellspacing="0">
|
||||
<tr>
|
||||
<td class="mdRow">
|
||||
<table cellpadding="0" cellspacing="0" border="0">
|
||||
<tr>
|
||||
<td class="md" nowrap valign="top">uiBrowser::getGroups </td>
|
||||
<td class="md" valign="top">( </td>
|
||||
<td class="md" nowrap valign="top">$ </td>
|
||||
<td class="mdname1" valign="top" nowrap> <em>id</em> </td>
|
||||
<td class="md" valign="top"> ) </td>
|
||||
<td class="md" nowrap></td>
|
||||
</tr>
|
||||
</table>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
<table cellspacing="5" cellpadding="0" border="0">
|
||||
<tr>
|
||||
<td>
|
||||
|
||||
</td>
|
||||
<td>
|
||||
|
||||
<p>
|
||||
getGroups
|
||||
<p>
|
||||
get a list of groups where user is member of<p>
|
||||
$id int local user ID <dl compact><dt><b>Returns:</b></dt><dd>array </dd></dl>
|
||||
|
||||
<p>
|
||||
Definition at line <a class="el" href="ui__browser_8class_8php-source.html#l00241">241</a> of file <a class="el" href="ui__browser_8class_8php-source.html">ui_browser.class.php</a>.
|
||||
<p>
|
||||
Referenced by <a class="el" href="ui__browser_8class_8php-source.html#l00262">getSubj2GroupForm()</a>. </td>
|
||||
</tr>
|
||||
</table>
|
||||
<a class="anchor" name="a17" doxytag="uiBrowser::getInfo"></a><p>
|
||||
<table class="mdTable" cellpadding="2" cellspacing="0">
|
||||
<tr>
|
||||
<td class="mdRow">
|
||||
<table cellpadding="0" cellspacing="0" border="0">
|
||||
<tr>
|
||||
<td class="md" nowrap valign="top">uiBrowser::getInfo </td>
|
||||
<td class="md" valign="top">( </td>
|
||||
<td class="md" nowrap valign="top">$ </td>
|
||||
<td class="mdname1" valign="top" nowrap> <em>id</em> </td>
|
||||
<td class="md" valign="top"> ) </td>
|
||||
<td class="md" nowrap></td>
|
||||
</tr>
|
||||
</table>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
<table cellspacing="5" cellpadding="0" border="0">
|
||||
<tr>
|
||||
<td>
|
||||
|
||||
</td>
|
||||
<td>
|
||||
|
||||
<p>
|
||||
getInfo
|
||||
<p>
|
||||
Call getid3 library to analyze media file and show some results<p>
|
||||
<dl compact><dt><b>Parameters:</b></dt><dd>
|
||||
<table border="0" cellspacing="2" cellpadding="0">
|
||||
<tr><td valign="top"></td><td valign="top"><em>$id</em> </td><td>int local ID of file </td></tr>
|
||||
</table>
|
||||
</dl>
|
||||
|
||||
<p>
|
||||
Definition at line <a class="el" href="ui__browser_8class_8php-source.html#l00380">380</a> of file <a class="el" href="ui__browser_8class_8php-source.html">ui_browser.class.php</a>. </td>
|
||||
</tr>
|
||||
</table>
|
||||
<a class="anchor" name="a16" doxytag="uiBrowser::getMdata"></a><p>
|
||||
<table class="mdTable" cellpadding="2" cellspacing="0">
|
||||
<tr>
|
||||
<td class="mdRow">
|
||||
<table cellpadding="0" cellspacing="0" border="0">
|
||||
<tr>
|
||||
<td class="md" nowrap valign="top">uiBrowser::getMdata </td>
|
||||
<td class="md" valign="top">( </td>
|
||||
<td class="md" nowrap valign="top">$ </td>
|
||||
<td class="mdname1" valign="top" nowrap> <em>id</em> </td>
|
||||
<td class="md" valign="top"> ) </td>
|
||||
<td class="md" nowrap></td>
|
||||
</tr>
|
||||
</table>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
<table cellspacing="5" cellpadding="0" border="0">
|
||||
<tr>
|
||||
<td>
|
||||
|
||||
</td>
|
||||
<td>
|
||||
|
||||
<p>
|
||||
getMdata
|
||||
<p>
|
||||
Show file's metadata as XML<p>
|
||||
<dl compact><dt><b>Parameters:</b></dt><dd>
|
||||
<table border="0" cellspacing="2" cellpadding="0">
|
||||
<tr><td valign="top"></td><td valign="top"><em>id</em> </td><td>int, local id of stored file </td></tr>
|
||||
</table>
|
||||
</dl>
|
||||
<dl compact><dt><b>Returns:</b></dt><dd>array </dd></dl>
|
||||
|
||||
<p>
|
||||
Definition at line <a class="el" href="ui__browser_8class_8php-source.html#l00368">368</a> of file <a class="el" href="ui__browser_8class_8php-source.html">ui_browser.class.php</a>. </td>
|
||||
</tr>
|
||||
</table>
|
||||
<a class="anchor" name="a18" doxytag="uiBrowser::getMetadataForm"></a><p>
|
||||
<table class="mdTable" cellpadding="2" cellspacing="0">
|
||||
<tr>
|
||||
<td class="mdRow">
|
||||
<table cellpadding="0" cellspacing="0" border="0">
|
||||
<tr>
|
||||
<td class="md" nowrap valign="top">uiBrowser::getMetadataForm </td>
|
||||
<td class="md" valign="top">( </td>
|
||||
<td class="md" nowrap valign="top">$ </td>
|
||||
<td class="mdname" nowrap> <em>id</em>, </td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="md" nowrap align="right"></td>
|
||||
<td class="md"></td>
|
||||
<td class="md" nowrap>&$ </td>
|
||||
<td class="mdname" nowrap> <em>mask</em></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="md"></td>
|
||||
<td class="md">) </td>
|
||||
<td class="md" colspan="2"></td>
|
||||
</tr>
|
||||
</table>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
<table cellspacing="5" cellpadding="0" border="0">
|
||||
<tr>
|
||||
<td>
|
||||
|
||||
</td>
|
||||
<td>
|
||||
|
||||
<p>
|
||||
getMetaDataForm
|
||||
<p>
|
||||
create a form to edit Metadata<p>
|
||||
<dl compact><dt><b>Parameters:</b></dt><dd>
|
||||
<table border="0" cellspacing="2" cellpadding="0">
|
||||
<tr><td valign="top"></td><td valign="top"><em>id</em> </td><td>int </td></tr>
|
||||
</table>
|
||||
</dl>
|
||||
<dl compact><dt><b>Returns:</b></dt><dd>string (html) </dd></dl>
|
||||
|
||||
<p>
|
||||
Definition at line <a class="el" href="ui__browser_8class_8php-source.html#l00402">402</a> of file <a class="el" href="ui__browser_8class_8php-source.html">ui_browser.class.php</a>.
|
||||
<p>
|
||||
References <a class="el" href="ui__base_8inc_8php-source.html#l00045">uiBase::_parseArr2Form()</a>, and <a class="el" href="ui__browser_8php-source.html#l00096">editMetaData</a>. </td>
|
||||
</tr>
|
||||
</table>
|
||||
<a class="anchor" name="a13" doxytag="uiBrowser::getNewFileData"></a><p>
|
||||
<table class="mdTable" cellpadding="2" cellspacing="0">
|
||||
<tr>
|
||||
<td class="mdRow">
|
||||
<table cellpadding="0" cellspacing="0" border="0">
|
||||
<tr>
|
||||
<td class="md" nowrap valign="top">uiBrowser::getNewFileData </td>
|
||||
<td class="md" valign="top">( </td>
|
||||
<td class="md" nowrap valign="top">$ </td>
|
||||
<td class="mdname1" valign="top" nowrap> <em>id</em> </td>
|
||||
<td class="md" valign="top"> ) </td>
|
||||
<td class="md" nowrap></td>
|
||||
</tr>
|
||||
</table>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
<table cellspacing="5" cellpadding="0" border="0">
|
||||
<tr>
|
||||
<td>
|
||||
|
||||
</td>
|
||||
<td>
|
||||
|
||||
<p>
|
||||
getNewFileData
|
||||
<p>
|
||||
get basic data about Folder to store file in<p>
|
||||
<dl compact><dt><b>Parameters:</b></dt><dd>
|
||||
<table border="0" cellspacing="2" cellpadding="0">
|
||||
<tr><td valign="top"></td><td valign="top"><em>$id</em> </td><td>int local ID of folder</td></tr>
|
||||
</table>
|
||||
</dl>
|
||||
<dl compact><dt><b>Returns:</b></dt><dd>array </dd></dl>
|
||||
|
||||
<p>
|
||||
Definition at line <a class="el" href="ui__browser_8class_8php-source.html#l00313">313</a> of file <a class="el" href="ui__browser_8class_8php-source.html">ui_browser.class.php</a>. </td>
|
||||
</tr>
|
||||
</table>
|
||||
<a class="anchor" name="a5" doxytag="uiBrowser::getNewFileForm"></a><p>
|
||||
<table class="mdTable" cellpadding="2" cellspacing="0">
|
||||
<tr>
|
||||
<td class="mdRow">
|
||||
<table cellpadding="0" cellspacing="0" border="0">
|
||||
<tr>
|
||||
<td class="md" nowrap valign="top">uiBrowser::getNewFileForm </td>
|
||||
<td class="md" valign="top">( </td>
|
||||
<td class="md" nowrap valign="top">$ </td>
|
||||
<td class="mdname" nowrap> <em>id</em>, </td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="md" nowrap align="right"></td>
|
||||
<td class="md"></td>
|
||||
<td class="md" nowrap>$ </td>
|
||||
<td class="mdname" nowrap> <em>mask</em></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="md"></td>
|
||||
<td class="md">) </td>
|
||||
<td class="md" colspan="2"></td>
|
||||
</tr>
|
||||
</table>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
<table cellspacing="5" cellpadding="0" border="0">
|
||||
<tr>
|
||||
<td>
|
||||
|
||||
</td>
|
||||
<td>
|
||||
|
||||
<p>
|
||||
getNewFileForm
|
||||
<p>
|
||||
create a form for file-upload<p>
|
||||
<dl compact><dt><b>Parameters:</b></dt><dd>
|
||||
<table border="0" cellspacing="2" cellpadding="0">
|
||||
<tr><td valign="top"></td><td valign="top"><em>int</em> </td><td>local $id of directory to store file in</td></tr>
|
||||
</table>
|
||||
</dl>
|
||||
string (html)
|
||||
<p>
|
||||
Definition at line <a class="el" href="ui__browser_8class_8php-source.html#l00139">139</a> of file <a class="el" href="ui__browser_8class_8php-source.html">ui_browser.class.php</a>.
|
||||
<p>
|
||||
References <a class="el" href="ui__base_8inc_8php-source.html#l00045">uiBase::_parseArr2Form()</a>, and <a class="el" href="ui__browser_8php-source.html#l00036">newfile</a>. </td>
|
||||
</tr>
|
||||
</table>
|
||||
<a class="anchor" name="a12" doxytag="uiBrowser::getPermissions"></a><p>
|
||||
<table class="mdTable" cellpadding="2" cellspacing="0">
|
||||
<tr>
|
||||
<td class="mdRow">
|
||||
<table cellpadding="0" cellspacing="0" border="0">
|
||||
<tr>
|
||||
<td class="md" nowrap valign="top">uiBrowser::getPermissions </td>
|
||||
<td class="md" valign="top">( </td>
|
||||
<td class="md" nowrap valign="top">$ </td>
|
||||
<td class="mdname1" valign="top" nowrap> <em>id</em> </td>
|
||||
<td class="md" valign="top"> ) </td>
|
||||
<td class="md" nowrap></td>
|
||||
</tr>
|
||||
</table>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
<table cellspacing="5" cellpadding="0" border="0">
|
||||
<tr>
|
||||
<td>
|
||||
|
||||
</td>
|
||||
<td>
|
||||
|
||||
<p>
|
||||
getPermissions
|
||||
<p>
|
||||
get permissions for local object ID<p>
|
||||
<dl compact><dt><b>Parameters:</b></dt><dd>
|
||||
<table border="0" cellspacing="2" cellpadding="0">
|
||||
<tr><td valign="top"></td><td valign="top"><em>$id</em> </td><td>int local ID (file/folder)</td></tr>
|
||||
</table>
|
||||
</dl>
|
||||
<dl compact><dt><b>Returns:</b></dt><dd>array </dd></dl>
|
||||
|
||||
<p>
|
||||
Definition at line <a class="el" href="ui__browser_8class_8php-source.html#l00293">293</a> of file <a class="el" href="ui__browser_8class_8php-source.html">ui_browser.class.php</a>.
|
||||
<p>
|
||||
References <a class="el" href="ui__browser_8php-source.html#l00061">subjects</a>. </td>
|
||||
</tr>
|
||||
</table>
|
||||
<a class="anchor" name="a6" doxytag="uiBrowser::getSearchForm"></a><p>
|
||||
<table class="mdTable" cellpadding="2" cellspacing="0">
|
||||
<tr>
|
||||
<td class="mdRow">
|
||||
<table cellpadding="0" cellspacing="0" border="0">
|
||||
<tr>
|
||||
<td class="md" nowrap valign="top">uiBrowser::getSearchForm </td>
|
||||
<td class="md" valign="top">( </td>
|
||||
<td class="md" nowrap valign="top">$ </td>
|
||||
<td class="mdname" nowrap> <em>id</em>, </td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="md" nowrap align="right"></td>
|
||||
<td class="md"></td>
|
||||
<td class="md" nowrap>&$ </td>
|
||||
<td class="mdname" nowrap> <em>mask</em></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="md"></td>
|
||||
<td class="md">) </td>
|
||||
<td class="md" colspan="2"></td>
|
||||
</tr>
|
||||
</table>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
<table cellspacing="5" cellpadding="0" border="0">
|
||||
<tr>
|
||||
<td>
|
||||
|
||||
</td>
|
||||
<td>
|
||||
|
||||
<p>
|
||||
getSearchForm
|
||||
<p>
|
||||
create a form for searching in StorageServer<p>
|
||||
<dl compact><dt><b>Parameters:</b></dt><dd>
|
||||
<table border="0" cellspacing="2" cellpadding="0">
|
||||
<tr><td valign="top"></td><td valign="top"><em>int</em> </td><td>local ID of start-directory</td></tr>
|
||||
</table>
|
||||
</dl>
|
||||
<dl compact><dt><b>Returns:</b></dt><dd>string (html) </dd></dl>
|
||||
|
||||
<p>
|
||||
Definition at line <a class="el" href="ui__browser_8class_8php-source.html#l00160">160</a> of file <a class="el" href="ui__browser_8class_8php-source.html">ui_browser.class.php</a>.
|
||||
<p>
|
||||
References <a class="el" href="ui__base_8inc_8php-source.html#l00045">uiBase::_parseArr2Form()</a>, and <a class="el" href="ui__browser_8php-source.html#l00051">search</a>. </td>
|
||||
</tr>
|
||||
</table>
|
||||
<a class="anchor" name="a14" doxytag="uiBrowser::getSearchRes"></a><p>
|
||||
<table class="mdTable" cellpadding="2" cellspacing="0">
|
||||
<tr>
|
||||
<td class="mdRow">
|
||||
<table cellpadding="0" cellspacing="0" border="0">
|
||||
<tr>
|
||||
<td class="md" nowrap valign="top">uiBrowser::getSearchRes </td>
|
||||
<td class="md" valign="top">( </td>
|
||||
<td class="md" nowrap valign="top">$ </td>
|
||||
<td class="mdname" nowrap> <em>id</em>, </td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="md" nowrap align="right"></td>
|
||||
<td class="md"></td>
|
||||
<td class="md" nowrap>$ </td>
|
||||
<td class="mdname" nowrap> <em>search</em></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="md"></td>
|
||||
<td class="md">) </td>
|
||||
<td class="md" colspan="2"></td>
|
||||
</tr>
|
||||
</table>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
<table cellspacing="5" cellpadding="0" border="0">
|
||||
<tr>
|
||||
<td>
|
||||
|
||||
</td>
|
||||
<td>
|
||||
|
||||
<p>
|
||||
getSearchRes
|
||||
<p>
|
||||
get Search Result<p>
|
||||
<dl compact><dt><b>Parameters:</b></dt><dd>
|
||||
<table border="0" cellspacing="2" cellpadding="0">
|
||||
<tr><td valign="top"></td><td valign="top"><em>$id</em> </td><td>int local ID (file/folder) to search in </td></tr>
|
||||
<tr><td valign="top"></td><td valign="top"><em>$serach</em> </td><td>string </td></tr>
|
||||
</table>
|
||||
</dl>
|
||||
<dl compact><dt><b>Returns:</b></dt><dd>array </dd></dl>
|
||||
|
||||
<p>
|
||||
Definition at line <a class="el" href="ui__browser_8class_8php-source.html#l00330">330</a> of file <a class="el" href="ui__browser_8class_8php-source.html">ui_browser.class.php</a>.
|
||||
<p>
|
||||
References <a class="el" href="ui__browser_8php-source.html#l00051">search</a>. </td>
|
||||
</tr>
|
||||
</table>
|
||||
<a class="anchor" name="a4" doxytag="uiBrowser::getStructure"></a><p>
|
||||
<table class="mdTable" cellpadding="2" cellspacing="0">
|
||||
<tr>
|
||||
<td class="mdRow">
|
||||
<table cellpadding="0" cellspacing="0" border="0">
|
||||
<tr>
|
||||
<td class="md" nowrap valign="top">uiBrowser::getStructure </td>
|
||||
<td class="md" valign="top">( </td>
|
||||
<td class="md" nowrap valign="top">$ </td>
|
||||
<td class="mdname" nowrap> <em>id</em>, </td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="md" nowrap align="right"></td>
|
||||
<td class="md"></td>
|
||||
<td class="md" nowrap>$ </td>
|
||||
<td class="mdname" nowrap> <em>homedir</em> = <code>FALSE</code></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="md"></td>
|
||||
<td class="md">) </td>
|
||||
<td class="md" colspan="2"></td>
|
||||
</tr>
|
||||
</table>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
<table cellspacing="5" cellpadding="0" border="0">
|
||||
<tr>
|
||||
<td>
|
||||
|
||||
</td>
|
||||
<td>
|
||||
|
||||
<p>
|
||||
getStructure
|
||||
<p>
|
||||
get directory-structure<p>
|
||||
<dl compact><dt><b>Parameters:</b></dt><dd>
|
||||
<table border="0" cellspacing="2" cellpadding="0">
|
||||
<tr><td valign="top"></td><td valign="top"><em>int</em> </td><td>local ID of start-directory </td></tr>
|
||||
<tr><td valign="top"></td><td valign="top"><em>boolean</em> </td><td>$homedir TRUE: get homedir of current user</td></tr>
|
||||
</table>
|
||||
</dl>
|
||||
array tree of directory with subs
|
||||
<p>
|
||||
Definition at line <a class="el" href="ui__browser_8class_8php-source.html#l00099">99</a> of file <a class="el" href="ui__browser_8class_8php-source.html">ui_browser.class.php</a>.
|
||||
<p>
|
||||
References <a class="el" href="ui__handler_8php-source.html#l00067">$_REQUEST</a>. </td>
|
||||
</tr>
|
||||
</table>
|
||||
<a class="anchor" name="a11" doxytag="uiBrowser::getSubj2GroupForm"></a><p>
|
||||
<table class="mdTable" cellpadding="2" cellspacing="0">
|
||||
<tr>
|
||||
<td class="mdRow">
|
||||
<table cellpadding="0" cellspacing="0" border="0">
|
||||
<tr>
|
||||
<td class="md" nowrap valign="top">uiBrowser::getSubj2GroupForm </td>
|
||||
<td class="md" valign="top">( </td>
|
||||
<td class="md" nowrap valign="top">$ </td>
|
||||
<td class="mdname1" valign="top" nowrap> <em>id</em> </td>
|
||||
<td class="md" valign="top"> ) </td>
|
||||
<td class="md" nowrap></td>
|
||||
</tr>
|
||||
</table>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
<table cellspacing="5" cellpadding="0" border="0">
|
||||
<tr>
|
||||
<td>
|
||||
|
||||
</td>
|
||||
<td>
|
||||
|
||||
<p>
|
||||
getSubj2GroupForm
|
||||
<p>
|
||||
creates a form to assign groups to a user<p>
|
||||
<dl compact><dt><b>Parameters:</b></dt><dd>
|
||||
<table border="0" cellspacing="2" cellpadding="0">
|
||||
<tr><td valign="top"></td><td valign="top"><em>$id</em> </td><td>int local user ID</td></tr>
|
||||
</table>
|
||||
</dl>
|
||||
<dl compact><dt><b>Returns:</b></dt><dd>string (html) </dd></dl>
|
||||
|
||||
<p>
|
||||
Definition at line <a class="el" href="ui__browser_8class_8php-source.html#l00262">262</a> of file <a class="el" href="ui__browser_8class_8php-source.html">ui_browser.class.php</a>.
|
||||
<p>
|
||||
References <a class="el" href="ui__handler_8php-source.html#l00063">addSubj2Group</a>, and <a class="el" href="ui__browser_8class_8php-source.html#l00241">getGroups()</a>. </td>
|
||||
</tr>
|
||||
</table>
|
||||
<a class="anchor" name="a7" doxytag="uiBrowser::getSubjects"></a><p>
|
||||
<table class="mdTable" cellpadding="2" cellspacing="0">
|
||||
<tr>
|
||||
<td class="mdRow">
|
||||
<table cellpadding="0" cellspacing="0" border="0">
|
||||
<tr>
|
||||
<td class="md" nowrap valign="top">uiBrowser::getSubjects </td>
|
||||
<td class="md" valign="top">( </td>
|
||||
<td class="mdname1" valign="top" nowrap> </td>
|
||||
<td class="md" valign="top"> ) </td>
|
||||
<td class="md" nowrap></td>
|
||||
</tr>
|
||||
</table>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
<table cellspacing="5" cellpadding="0" border="0">
|
||||
<tr>
|
||||
<td>
|
||||
|
||||
</td>
|
||||
<td>
|
||||
|
||||
<p>
|
||||
getSubjects
|
||||
<p>
|
||||
get all GreenBox subjects (users/groups)<p>
|
||||
<dl compact><dt><b>Returns:</b></dt><dd>array subj=>unique id of subject, loggedAs=>corresponding login name </dd></dl>
|
||||
|
||||
<p>
|
||||
Definition at line <a class="el" href="ui__browser_8class_8php-source.html#l00178">178</a> of file <a class="el" href="ui__browser_8class_8php-source.html">ui_browser.class.php</a>. </td>
|
||||
</tr>
|
||||
</table>
|
||||
<a class="anchor" name="a3" doxytag="uiBrowser::getUserInfo"></a><p>
|
||||
<table class="mdTable" cellpadding="2" cellspacing="0">
|
||||
<tr>
|
||||
<td class="mdRow">
|
||||
<table cellpadding="0" cellspacing="0" border="0">
|
||||
<tr>
|
||||
<td class="md" nowrap valign="top">uiBrowser::getUserInfo </td>
|
||||
<td class="md" valign="top">( </td>
|
||||
<td class="mdname1" valign="top" nowrap> </td>
|
||||
<td class="md" valign="top"> ) </td>
|
||||
<td class="md" nowrap></td>
|
||||
</tr>
|
||||
</table>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
<table cellspacing="5" cellpadding="0" border="0">
|
||||
<tr>
|
||||
<td>
|
||||
|
||||
</td>
|
||||
<td>
|
||||
|
||||
<p>
|
||||
getUserInfo
|
||||
<p>
|
||||
get info about logged in user<p>
|
||||
<dl compact><dt><b>Returns:</b></dt><dd>array uname=>user Name, uid=>user ID </dd></dl>
|
||||
|
||||
<p>
|
||||
Definition at line <a class="el" href="ui__browser_8class_8php-source.html#l00083">83</a> of file <a class="el" href="ui__browser_8class_8php-source.html">ui_browser.class.php</a>. </td>
|
||||
</tr>
|
||||
</table>
|
||||
<a class="anchor" name="a2" doxytag="uiBrowser::loginform"></a><p>
|
||||
<table class="mdTable" cellpadding="2" cellspacing="0">
|
||||
<tr>
|
||||
<td class="mdRow">
|
||||
<table cellpadding="0" cellspacing="0" border="0">
|
||||
<tr>
|
||||
<td class="md" nowrap valign="top">uiBrowser::loginform </td>
|
||||
<td class="md" valign="top">( </td>
|
||||
<td class="md" nowrap valign="top">&$ </td>
|
||||
<td class="mdname" nowrap> <em>Smarty</em>, </td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="md" nowrap align="right"></td>
|
||||
<td class="md"></td>
|
||||
<td class="md" nowrap>&$ </td>
|
||||
<td class="mdname" nowrap> <em>mask</em></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="md"></td>
|
||||
<td class="md">) </td>
|
||||
<td class="md" colspan="2"></td>
|
||||
</tr>
|
||||
</table>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
<table cellspacing="5" cellpadding="0" border="0">
|
||||
<tr>
|
||||
<td>
|
||||
|
||||
</td>
|
||||
<td>
|
||||
|
||||
<p>
|
||||
loginform
|
||||
<p>
|
||||
create a login-form<p>
|
||||
<dl compact><dt><b>Parameters:</b></dt><dd>
|
||||
<table border="0" cellspacing="2" cellpadding="0">
|
||||
<tr><td valign="top"></td><td valign="top"><em>string</em> </td><td>$faillogin login name of failed login process </td></tr>
|
||||
</table>
|
||||
</dl>
|
||||
<dl compact><dt><b>Returns:</b></dt><dd>string (html) </dd></dl>
|
||||
|
||||
<p>
|
||||
Definition at line <a class="el" href="ui__browser_8class_8php-source.html#l00057">57</a> of file <a class="el" href="ui__browser_8class_8php-source.html">ui_browser.class.php</a>.
|
||||
<p>
|
||||
References <a class="el" href="ui__base_8inc_8php-source.html#l00045">uiBase::_parseArr2Form()</a>. </td>
|
||||
</tr>
|
||||
</table>
|
||||
<a class="anchor" name="a19" doxytag="uiBrowser::systemPrefs"></a><p>
|
||||
<table class="mdTable" cellpadding="2" cellspacing="0">
|
||||
<tr>
|
||||
<td class="mdRow">
|
||||
<table cellpadding="0" cellspacing="0" border="0">
|
||||
<tr>
|
||||
<td class="md" nowrap valign="top">uiBrowser::systemPrefs </td>
|
||||
<td class="md" valign="top">( </td>
|
||||
<td class="md" nowrap valign="top">&$ </td>
|
||||
<td class="mdname1" valign="top" nowrap> <em>mask</em> </td>
|
||||
<td class="md" valign="top"> ) </td>
|
||||
<td class="md" nowrap></td>
|
||||
</tr>
|
||||
</table>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
<table cellspacing="5" cellpadding="0" border="0">
|
||||
<tr>
|
||||
<td>
|
||||
|
||||
</td>
|
||||
<td>
|
||||
|
||||
<p>
|
||||
|
||||
<p>
|
||||
Definition at line <a class="el" href="ui__browser_8class_8php-source.html#l00416">416</a> of file <a class="el" href="ui__browser_8class_8php-source.html">ui_browser.class.php</a>.
|
||||
<p>
|
||||
References <a class="el" href="ui__base_8inc_8php-source.html#l00045">uiBase::_parseArr2Form()</a>, and <a class="el" href="ui__browser_8class_8php-source.html#l00416">systemPrefs()</a>.
|
||||
<p>
|
||||
Referenced by <a class="el" href="ui__browser_8class_8php-source.html#l00416">systemPrefs()</a>. </td>
|
||||
</tr>
|
||||
</table>
|
||||
<hr><h2>Member Data Documentation</h2>
|
||||
<a class="anchor" name="o0" doxytag="uiBrowser::$alertMsg"></a><p>
|
||||
<table class="mdTable" cellpadding="2" cellspacing="0">
|
||||
<tr>
|
||||
<td class="mdRow">
|
||||
<table cellpadding="0" cellspacing="0" border="0">
|
||||
<tr>
|
||||
<td class="md" nowrap valign="top">uiBrowser::$alertMsg </td>
|
||||
</tr>
|
||||
</table>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
<table cellspacing="5" cellpadding="0" border="0">
|
||||
<tr>
|
||||
<td>
|
||||
|
||||
</td>
|
||||
<td>
|
||||
|
||||
<p>
|
||||
|
||||
<p>
|
||||
Definition at line <a class="el" href="ui__browser_8class_8php-source.html#l00003">3</a> of file <a class="el" href="ui__browser_8class_8php-source.html">ui_browser.class.php</a>. </td>
|
||||
</tr>
|
||||
</table>
|
||||
<hr>The documentation for this class was generated from the following file:<ul>
|
||||
<li><a class="el" href="ui__browser_8class_8php-source.html">ui_browser.class.php</a></ul>
|
||||
<hr size="1"><address style="align: right;"><small>Generated on Wed Jan 12 16:22:49 2005 for LiveSupport - htmlUI module by
|
||||
<a href="http://www.doxygen.org/index.html">
|
||||
<img src="doxygen.png" alt="doxygen" align="middle" border="0"></a> 1.4.0 </small></address>
|
||||
</body>
|
||||
</html>
|
Binary file not shown.
Before Width: | Height: | Size: 316 B |
|
@ -1,38 +0,0 @@
|
|||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
|
||||
<html><head><meta http-equiv="Content-Type" content="text/html;charset=iso-8859-1">
|
||||
<title>LiveSupport&nbsp;-&nbsp;htmlUI&nbsp;module: Member List</title>
|
||||
<link href="doxygen.css" rel="stylesheet" type="text/css">
|
||||
</head><body>
|
||||
<!-- Generated by Doxygen 1.4.0 -->
|
||||
<div class="qindex"><a class="qindex" href="index.html">Main Page</a> | <a class="qindex" href="hierarchy.html">Class Hierarchy</a> | <a class="qindex" href="classes.html">Alphabetical List</a> | <a class="qindex" href="annotated.html">Class List</a> | <a class="qindex" href="dirs.html">Directories</a> | <a class="qindex" href="files.html">File List</a> | <a class="qindex" href="functions.html">Class Members</a> | <a class="qindex" href="globals.html">File Members</a></div>
|
||||
<h1>uiHandler Member List</h1>This is the complete list of members for <a class="el" href="classuiHandler.html">uiHandler</a>, including all inherited members.<p><table>
|
||||
<tr class="memlist"><td><a class="el" href="classuiHandler.html#o1">$alertMsg</a></td><td><a class="el" href="classuiHandler.html">uiHandler</a></td><td></td></tr>
|
||||
<tr class="memlist"><td><a class="el" href="classuiHandler.html#o0">$redirUrl</a></td><td><a class="el" href="classuiHandler.html">uiHandler</a></td><td></td></tr>
|
||||
<tr class="memlist"><td><a class="el" href="classuiBase.html#a1">_parseArr2Form</a>(&$form, &$mask, $side='client')</td><td><a class="el" href="classuiBase.html">uiBase</a></td><td></td></tr>
|
||||
<tr class="memlist"><td><a class="el" href="classuiHandler.html#a20">_validateForm</a>(&$formdata, &$mask)</td><td><a class="el" href="classuiHandler.html">uiHandler</a></td><td></td></tr>
|
||||
<tr class="memlist"><td><a class="el" href="classuiHandler.html#a15">addPerm</a>($subj, $permAction, $id, $allowDeny)</td><td><a class="el" href="classuiHandler.html">uiHandler</a></td><td></td></tr>
|
||||
<tr class="memlist"><td><a class="el" href="classuiHandler.html#a12">addSubj</a>(&$formdata, &$mask)</td><td><a class="el" href="classuiHandler.html">uiHandler</a></td><td></td></tr>
|
||||
<tr class="memlist"><td><a class="el" href="classuiHandler.html#a17">addSubj2Group</a>($login, $gname, $reid)</td><td><a class="el" href="classuiHandler.html">uiHandler</a></td><td></td></tr>
|
||||
<tr class="memlist"><td><a class="el" href="classuiHandler.html#a7">copy</a>($newPath, $id)</td><td><a class="el" href="classuiHandler.html">uiHandler</a></td><td></td></tr>
|
||||
<tr class="memlist"><td><a class="el" href="classuiHandler.html#a8">delete</a>($id, $delOverride=FALSE)</td><td><a class="el" href="classuiHandler.html">uiHandler</a></td><td></td></tr>
|
||||
<tr class="memlist"><td><a class="el" href="classuiHandler.html#a9">getFile</a>($id)</td><td><a class="el" href="classuiHandler.html">uiHandler</a></td><td></td></tr>
|
||||
<tr class="memlist"><td><a class="el" href="classuiHandler.html#a11">getInfo</a>($id)</td><td><a class="el" href="classuiHandler.html">uiHandler</a></td><td></td></tr>
|
||||
<tr class="memlist"><td><a class="el" href="classuiHandler.html#a10">getMdata</a>($id)</td><td><a class="el" href="classuiHandler.html">uiHandler</a></td><td></td></tr>
|
||||
<tr class="memlist"><td><a class="el" href="classuiHandler.html#a1">login</a>(&$formdata, &$mask)</td><td><a class="el" href="classuiHandler.html">uiHandler</a></td><td></td></tr>
|
||||
<tr class="memlist"><td><a class="el" href="classuiHandler.html#a2">logout</a>()</td><td><a class="el" href="classuiHandler.html">uiHandler</a></td><td></td></tr>
|
||||
<tr class="memlist"><td><a class="el" href="classuiHandler.html#a6">move</a>($newPath, $id)</td><td><a class="el" href="classuiHandler.html">uiHandler</a></td><td></td></tr>
|
||||
<tr class="memlist"><td><a class="el" href="classuiHandler.html#a4">newFolder</a>($newname, $id)</td><td><a class="el" href="classuiHandler.html">uiHandler</a></td><td></td></tr>
|
||||
<tr class="memlist"><td><a class="el" href="classuiHandler.html#a14">passwd</a>($uid, $oldpass, $pass, $pass2)</td><td><a class="el" href="classuiHandler.html">uiHandler</a></td><td></td></tr>
|
||||
<tr class="memlist"><td><a class="el" href="classuiHandler.html#a16">removePerm</a>($permid, $oid)</td><td><a class="el" href="classuiHandler.html">uiHandler</a></td><td></td></tr>
|
||||
<tr class="memlist"><td><a class="el" href="classuiHandler.html#a13">removeSubj</a>($login)</td><td><a class="el" href="classuiHandler.html">uiHandler</a></td><td></td></tr>
|
||||
<tr class="memlist"><td><a class="el" href="classuiHandler.html#a18">removeSubjFromGr</a>($login, $gname, $reid)</td><td><a class="el" href="classuiHandler.html">uiHandler</a></td><td></td></tr>
|
||||
<tr class="memlist"><td><a class="el" href="classuiHandler.html#a5">rename</a>($newname, $id)</td><td><a class="el" href="classuiHandler.html">uiHandler</a></td><td></td></tr>
|
||||
<tr class="memlist"><td><a class="el" href="classuiHandler.html#a19">storeSystemPrefs</a>(&$formdata, &$mask)</td><td><a class="el" href="classuiHandler.html">uiHandler</a></td><td></td></tr>
|
||||
<tr class="memlist"><td><a class="el" href="classuiBase.html#a0">tra</a>($input)</td><td><a class="el" href="classuiBase.html">uiBase</a></td><td></td></tr>
|
||||
<tr class="memlist"><td><a class="el" href="classuiHandler.html#a0">uiHandler</a>($config)</td><td><a class="el" href="classuiHandler.html">uiHandler</a></td><td></td></tr>
|
||||
<tr class="memlist"><td><a class="el" href="classuiHandler.html#a3">upload</a>(&$formdata, $id, &$mask)</td><td><a class="el" href="classuiHandler.html">uiHandler</a></td><td></td></tr>
|
||||
</table><hr size="1"><address style="align: right;"><small>Generated on Wed Jan 12 16:22:49 2005 for LiveSupport - htmlUI module by
|
||||
<a href="http://www.doxygen.org/index.html">
|
||||
<img src="doxygen.png" alt="doxygen" align="middle" border="0"></a> 1.4.0 </small></address>
|
||||
</body>
|
||||
</html>
|
File diff suppressed because it is too large
Load Diff
Binary file not shown.
Before Width: | Height: | Size: 310 B |
|
@ -1,115 +0,0 @@
|
|||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
|
||||
<html><head><meta http-equiv="Content-Type" content="text/html;charset=iso-8859-1">
|
||||
<title>LiveSupport&nbsp;-&nbsp;htmlUI&nbsp;module: conf.php Source File</title>
|
||||
<link href="doxygen.css" rel="stylesheet" type="text/css">
|
||||
</head><body>
|
||||
<!-- Generated by Doxygen 1.4.0 -->
|
||||
<div class="qindex"><a class="qindex" href="index.html">Main Page</a> | <a class="qindex" href="hierarchy.html">Class Hierarchy</a> | <a class="qindex" href="classes.html">Alphabetical List</a> | <a class="qindex" href="annotated.html">Class List</a> | <a class="qindex" href="dirs.html">Directories</a> | <a class="qindex" href="files.html">File List</a> | <a class="qindex" href="functions.html">Class Members</a> | <a class="qindex" href="globals.html">File Members</a></div>
|
||||
<div class="nav">
|
||||
<a class="el" href="dir_000000.html">var</a></div>
|
||||
<h1>conf.php</h1><a href="conf_8php.html">Go to the documentation of this file.</a><div class="fragment"><pre class="fragment">00001 <?php
|
||||
00002 <span class="comment">/*------------------------------------------------------------------------------</span>
|
||||
00003 <span class="comment"></span>
|
||||
00004 <span class="comment"> Copyright (c) 2004 Media Development Loan Fund</span>
|
||||
00005 <span class="comment"></span>
|
||||
00006 <span class="comment"> This file is part of the LiveSupport project.</span>
|
||||
00007 <span class="comment"> http://livesupport.campware.org/</span>
|
||||
00008 <span class="comment"> To report bugs, send an e-mail to bugs@campware.org</span>
|
||||
00009 <span class="comment"></span>
|
||||
00010 <span class="comment"> LiveSupport is free software; you can redistribute it and/or modify</span>
|
||||
00011 <span class="comment"> it under the terms of the GNU General Public License as published by</span>
|
||||
00012 <span class="comment"> the Free Software Foundation; either version 2 of the License, or</span>
|
||||
00013 <span class="comment"> (at your option) any later version.</span>
|
||||
00014 <span class="comment"></span>
|
||||
00015 <span class="comment"> LiveSupport is distributed in the hope that it will be useful,</span>
|
||||
00016 <span class="comment"> but WITHOUT ANY WARRANTY; without even the implied warranty of</span>
|
||||
00017 <span class="comment"> MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the</span>
|
||||
00018 <span class="comment"> GNU General Public License for more details.</span>
|
||||
00019 <span class="comment"></span>
|
||||
00020 <span class="comment"> You should have received a copy of the GNU General Public License</span>
|
||||
00021 <span class="comment"> along with LiveSupport; if not, write to the Free Software</span>
|
||||
00022 <span class="comment"> Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA</span>
|
||||
00023 <span class="comment"></span>
|
||||
00024 <span class="comment"></span>
|
||||
00025 <span class="comment"> Author : $Author: sebastian $</span>
|
||||
00026 <span class="comment"> Version : $Revision: 1.1 $</span>
|
||||
00027 <span class="comment"> Location : $Source: /home/paul/cvs2svn-livesupport/newcvsrepo/livesupport/modules/htmlUI/doc/doxygen/html/Attic/conf_8php-source.html,v $</span>
|
||||
00028 <span class="comment"></span>
|
||||
00029 <span class="comment">------------------------------------------------------------------------------*/</span>
|
||||
00030
|
||||
<a name="l00049"></a><a class="code" href="conf_8php.html#a0">00049</a> <a class="code" href="conf_8php.html#a0">$config</a> = array(
|
||||
00050 <span class="comment">/* ================================================== basic configuration */</span>
|
||||
00051 'dsn' => array(
|
||||
00052 'username' => 'test',
|
||||
00053 'password' => 'test',
|
||||
00054 'hostspec' => 'localhost',
|
||||
00055 'phptype' => 'pgsql',
|
||||
00056 'database' => 'LiveSupport-test',
|
||||
00057 ),
|
||||
00058 'tblNamePrefix' => 'ls_',
|
||||
00059 'authCookieName'=> 'lssid',
|
||||
00060 #'storageDir' => dirname(getcwd()).'/stor',
|
||||
00061 #'bufferDir' => dirname(getcwd()).'/stor/buffer',
|
||||
00062 #'transDir' => dirname(getcwd()).'/trans',
|
||||
00063 #'accessDir' => dirname(getcwd()).'/access',
|
||||
00064 'storageDir' => dirname(__FILE__).'/../../storageServer/var/stor',
|
||||
00065 'bufferDir' => dirname(__FILE__).'/../../storageServer/var/stor/buffer',
|
||||
00066 'transDir' => dirname(__FILE__).'/../../storageServer/var/trans',
|
||||
00067 'accessDir' => dirname(__FILE__).'/../../storageServer/var/access',
|
||||
00068
|
||||
00069 <span class="comment">/* ==================================================== URL configuration */</span>
|
||||
00070 'storageUrlPath' => '/livesupportStorageServer',
|
||||
00071 'storageXMLRPC' => 'xmlrpc/xrLocStor.php',
|
||||
00072 'storageUrlHost' => 'localhost',
|
||||
00073 'storageUrlPort' => 80,
|
||||
00074
|
||||
00075 <span class="comment">/* ================================================ archive configuration */</span>
|
||||
00076 'archiveUrlPath' => '/livesupportArchiveServer',
|
||||
00077 'archiveXMLRPC' => 'xmlrpc/xrArchive.php',
|
||||
00078 'archiveUrlHost' => 'localhost',
|
||||
00079 'archiveUrlPort' => 80,
|
||||
00080 'archiveAccountLogin' => 'root',
|
||||
00081 'archiveAccountPass' => <span class="charliteral">'q'</span>,
|
||||
00082
|
||||
00083 <span class="comment">/* ==================================== aplication-specific configuration */</span>
|
||||
00084 'objtypes' => array(
|
||||
00085 'RootNode' => array('Folder'),
|
||||
00086 'Storage' => array('Folder', 'File', 'Replica'),
|
||||
00087 'Folder' => array('Folder', 'File', 'Replica'),
|
||||
00088 'File' => array(),
|
||||
00089 'Replica' => array(),
|
||||
00090 ),
|
||||
00091 'allowedActions'=> array(
|
||||
00092 'RootNode' => array('classes', 'subjects'),
|
||||
00093 'Folder' => array('editPrivs', 'write', 'read'),
|
||||
00094 'File' => array('editPrivs', 'write', 'read'),
|
||||
00095 'Replica' => array('editPrivs', 'write', 'read'),
|
||||
00096 '_class' => array('editPrivs', 'write', 'read'),
|
||||
00097 ),
|
||||
00098 'allActions' => array(
|
||||
00099 'editPrivs', 'write', 'read', 'classes', 'subjects'
|
||||
00100 ),
|
||||
00101
|
||||
00102 <span class="comment">/* ============================================== auxiliary configuration */</span>
|
||||
00103 'RootNode' => 'RootNode',
|
||||
00104 'tmpRootPass' => <span class="charliteral">'q'</span>,
|
||||
00105 );
|
||||
00106
|
||||
00107
|
||||
00108
|
||||
00109
|
||||
<a name="l00110"></a><a class="code" href="conf_8php.html#a1">00110</a> define('UI_HANDLER', 'ui_handler.php');
|
||||
<a name="l00111"></a><a class="code" href="conf_8php.html#a2">00111</a> define('UI_BROWSER', 'ui_browser.php');
|
||||
<a name="l00112"></a><a class="code" href="conf_8php.html#a3">00112</a> define('UI_FORM_STANDARD_METHOD', 'POST');
|
||||
<a name="l00113"></a><a class="code" href="conf_8php.html#a4">00113</a> define('UI_INPUT_STANDARD_SIZE', 20);
|
||||
<a name="l00114"></a><a class="code" href="conf_8php.html#a5">00114</a> define('UI_INPUT_STANDARD_MAXLENGTH', 50);
|
||||
<a name="l00115"></a><a class="code" href="conf_8php.html#a6">00115</a> define('UI_INPUT_GBOBJECT_MAXFILESIZE', 10000);
|
||||
<a name="l00116"></a><a class="code" href="conf_8php.html#a7">00116</a> define('UI_QFORM_REQUIRED', 'templates/form_parts/required.tpl');
|
||||
<a name="l00117"></a><a class="code" href="conf_8php.html#a8">00117</a> define('UI_QFORM_REQUIREDNOTE', 'templates/form_parts/requirednote.tpl');
|
||||
<a name="l00118"></a><a class="code" href="conf_8php.html#a9">00118</a> define('UI_QFORM_ERROR', 'templates/form_parts/required.tpl');
|
||||
00119 ?>
|
||||
</pre></div><hr size="1"><address style="align: right;"><small>Generated on Wed Jan 12 16:22:49 2005 for LiveSupport - htmlUI module by
|
||||
<a href="http://www.doxygen.org/index.html">
|
||||
<img src="doxygen.png" alt="doxygen" align="middle" border="0"></a> 1.4.0 </small></address>
|
||||
</body>
|
||||
</html>
|
|
@ -1,326 +0,0 @@
|
|||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
|
||||
<html><head><meta http-equiv="Content-Type" content="text/html;charset=iso-8859-1">
|
||||
<title>LiveSupport&nbsp;-&nbsp;htmlUI&nbsp;module: conf.php File Reference</title>
|
||||
<link href="doxygen.css" rel="stylesheet" type="text/css">
|
||||
</head><body>
|
||||
<!-- Generated by Doxygen 1.4.0 -->
|
||||
<div class="qindex"><a class="qindex" href="index.html">Main Page</a> | <a class="qindex" href="hierarchy.html">Class Hierarchy</a> | <a class="qindex" href="classes.html">Alphabetical List</a> | <a class="qindex" href="annotated.html">Class List</a> | <a class="qindex" href="dirs.html">Directories</a> | <a class="qindex" href="files.html">File List</a> | <a class="qindex" href="functions.html">Class Members</a> | <a class="qindex" href="globals.html">File Members</a></div>
|
||||
<div class="nav">
|
||||
<a class="el" href="dir_000000.html">var</a></div>
|
||||
<h1>conf.php File Reference</h1>
|
||||
<p>
|
||||
<a href="conf_8php-source.html">Go to the source code of this file.</a><table border="0" cellpadding="0" cellspacing="0">
|
||||
<tr><td></td></tr>
|
||||
<tr><td colspan="2"><br><h2>Enumerations</h2></td></tr>
|
||||
<tr><td class="memItemLeft" nowrap align="right" valign="top">enum </td><td class="memItemRight" valign="bottom"><a class="el" href="conf_8php.html#a1">UI_HANDLER</a> </td></tr>
|
||||
|
||||
<tr><td class="memItemLeft" nowrap align="right" valign="top">enum </td><td class="memItemRight" valign="bottom"><a class="el" href="conf_8php.html#a2">UI_BROWSER</a> </td></tr>
|
||||
|
||||
<tr><td class="memItemLeft" nowrap align="right" valign="top">enum </td><td class="memItemRight" valign="bottom"><a class="el" href="conf_8php.html#a3">UI_FORM_STANDARD_METHOD</a> </td></tr>
|
||||
|
||||
<tr><td class="memItemLeft" nowrap align="right" valign="top">enum </td><td class="memItemRight" valign="bottom"><a class="el" href="conf_8php.html#a4">UI_INPUT_STANDARD_SIZE</a> </td></tr>
|
||||
|
||||
<tr><td class="memItemLeft" nowrap align="right" valign="top">enum </td><td class="memItemRight" valign="bottom"><a class="el" href="conf_8php.html#a5">UI_INPUT_STANDARD_MAXLENGTH</a> </td></tr>
|
||||
|
||||
<tr><td class="memItemLeft" nowrap align="right" valign="top">enum </td><td class="memItemRight" valign="bottom"><a class="el" href="conf_8php.html#a6">UI_INPUT_GBOBJECT_MAXFILESIZE</a> </td></tr>
|
||||
|
||||
<tr><td class="memItemLeft" nowrap align="right" valign="top">enum </td><td class="memItemRight" valign="bottom"><a class="el" href="conf_8php.html#a7">UI_QFORM_REQUIRED</a> </td></tr>
|
||||
|
||||
<tr><td class="memItemLeft" nowrap align="right" valign="top">enum </td><td class="memItemRight" valign="bottom"><a class="el" href="conf_8php.html#a8">UI_QFORM_REQUIREDNOTE</a> </td></tr>
|
||||
|
||||
<tr><td class="memItemLeft" nowrap align="right" valign="top">enum </td><td class="memItemRight" valign="bottom"><a class="el" href="conf_8php.html#a9">UI_QFORM_ERROR</a> </td></tr>
|
||||
|
||||
<tr><td colspan="2"><br><h2>Variables</h2></td></tr>
|
||||
<tr><td class="memItemLeft" nowrap align="right" valign="top"> </td><td class="memItemRight" valign="bottom"><a class="el" href="conf_8php.html#a0">$config</a></td></tr>
|
||||
|
||||
<tr><td class="mdescLeft"> </td><td class="mdescRight">configuration structure: <a href="#a0"></a><br></td></tr>
|
||||
</table>
|
||||
<hr><h2>Enumeration Type Documentation</h2>
|
||||
<a class="anchor" name="a2" doxytag="conf.php::UI_BROWSER"></a><p>
|
||||
<table class="mdTable" cellpadding="2" cellspacing="0">
|
||||
<tr>
|
||||
<td class="mdRow">
|
||||
<table cellpadding="0" cellspacing="0" border="0">
|
||||
<tr>
|
||||
<td class="md" nowrap valign="top">enum <a class="el" href="conf_8php.html#a2">UI_BROWSER</a> </td>
|
||||
</tr>
|
||||
</table>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
<table cellspacing="5" cellpadding="0" border="0">
|
||||
<tr>
|
||||
<td>
|
||||
|
||||
</td>
|
||||
<td>
|
||||
|
||||
<p>
|
||||
|
||||
<p>
|
||||
Definition at line <a class="el" href="conf_8php-source.html#l00111">111</a> of file <a class="el" href="conf_8php-source.html">conf.php</a>. </td>
|
||||
</tr>
|
||||
</table>
|
||||
<a class="anchor" name="a3" doxytag="conf.php::UI_FORM_STANDARD_METHOD"></a><p>
|
||||
<table class="mdTable" cellpadding="2" cellspacing="0">
|
||||
<tr>
|
||||
<td class="mdRow">
|
||||
<table cellpadding="0" cellspacing="0" border="0">
|
||||
<tr>
|
||||
<td class="md" nowrap valign="top">enum <a class="el" href="conf_8php.html#a3">UI_FORM_STANDARD_METHOD</a> </td>
|
||||
</tr>
|
||||
</table>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
<table cellspacing="5" cellpadding="0" border="0">
|
||||
<tr>
|
||||
<td>
|
||||
|
||||
</td>
|
||||
<td>
|
||||
|
||||
<p>
|
||||
|
||||
<p>
|
||||
Definition at line <a class="el" href="conf_8php-source.html#l00112">112</a> of file <a class="el" href="conf_8php-source.html">conf.php</a>. </td>
|
||||
</tr>
|
||||
</table>
|
||||
<a class="anchor" name="a1" doxytag="conf.php::UI_HANDLER"></a><p>
|
||||
<table class="mdTable" cellpadding="2" cellspacing="0">
|
||||
<tr>
|
||||
<td class="mdRow">
|
||||
<table cellpadding="0" cellspacing="0" border="0">
|
||||
<tr>
|
||||
<td class="md" nowrap valign="top">enum <a class="el" href="conf_8php.html#a1">UI_HANDLER</a> </td>
|
||||
</tr>
|
||||
</table>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
<table cellspacing="5" cellpadding="0" border="0">
|
||||
<tr>
|
||||
<td>
|
||||
|
||||
</td>
|
||||
<td>
|
||||
|
||||
<p>
|
||||
|
||||
<p>
|
||||
Definition at line <a class="el" href="conf_8php-source.html#l00110">110</a> of file <a class="el" href="conf_8php-source.html">conf.php</a>. </td>
|
||||
</tr>
|
||||
</table>
|
||||
<a class="anchor" name="a6" doxytag="conf.php::UI_INPUT_GBOBJECT_MAXFILESIZE"></a><p>
|
||||
<table class="mdTable" cellpadding="2" cellspacing="0">
|
||||
<tr>
|
||||
<td class="mdRow">
|
||||
<table cellpadding="0" cellspacing="0" border="0">
|
||||
<tr>
|
||||
<td class="md" nowrap valign="top">enum <a class="el" href="conf_8php.html#a6">UI_INPUT_GBOBJECT_MAXFILESIZE</a> </td>
|
||||
</tr>
|
||||
</table>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
<table cellspacing="5" cellpadding="0" border="0">
|
||||
<tr>
|
||||
<td>
|
||||
|
||||
</td>
|
||||
<td>
|
||||
|
||||
<p>
|
||||
|
||||
<p>
|
||||
Definition at line <a class="el" href="conf_8php-source.html#l00115">115</a> of file <a class="el" href="conf_8php-source.html">conf.php</a>. </td>
|
||||
</tr>
|
||||
</table>
|
||||
<a class="anchor" name="a5" doxytag="conf.php::UI_INPUT_STANDARD_MAXLENGTH"></a><p>
|
||||
<table class="mdTable" cellpadding="2" cellspacing="0">
|
||||
<tr>
|
||||
<td class="mdRow">
|
||||
<table cellpadding="0" cellspacing="0" border="0">
|
||||
<tr>
|
||||
<td class="md" nowrap valign="top">enum <a class="el" href="conf_8php.html#a5">UI_INPUT_STANDARD_MAXLENGTH</a> </td>
|
||||
</tr>
|
||||
</table>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
<table cellspacing="5" cellpadding="0" border="0">
|
||||
<tr>
|
||||
<td>
|
||||
|
||||
</td>
|
||||
<td>
|
||||
|
||||
<p>
|
||||
|
||||
<p>
|
||||
Definition at line <a class="el" href="conf_8php-source.html#l00114">114</a> of file <a class="el" href="conf_8php-source.html">conf.php</a>. </td>
|
||||
</tr>
|
||||
</table>
|
||||
<a class="anchor" name="a4" doxytag="conf.php::UI_INPUT_STANDARD_SIZE"></a><p>
|
||||
<table class="mdTable" cellpadding="2" cellspacing="0">
|
||||
<tr>
|
||||
<td class="mdRow">
|
||||
<table cellpadding="0" cellspacing="0" border="0">
|
||||
<tr>
|
||||
<td class="md" nowrap valign="top">enum <a class="el" href="conf_8php.html#a4">UI_INPUT_STANDARD_SIZE</a> </td>
|
||||
</tr>
|
||||
</table>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
<table cellspacing="5" cellpadding="0" border="0">
|
||||
<tr>
|
||||
<td>
|
||||
|
||||
</td>
|
||||
<td>
|
||||
|
||||
<p>
|
||||
|
||||
<p>
|
||||
Definition at line <a class="el" href="conf_8php-source.html#l00113">113</a> of file <a class="el" href="conf_8php-source.html">conf.php</a>. </td>
|
||||
</tr>
|
||||
</table>
|
||||
<a class="anchor" name="a9" doxytag="conf.php::UI_QFORM_ERROR"></a><p>
|
||||
<table class="mdTable" cellpadding="2" cellspacing="0">
|
||||
<tr>
|
||||
<td class="mdRow">
|
||||
<table cellpadding="0" cellspacing="0" border="0">
|
||||
<tr>
|
||||
<td class="md" nowrap valign="top">enum <a class="el" href="conf_8php.html#a9">UI_QFORM_ERROR</a> </td>
|
||||
</tr>
|
||||
</table>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
<table cellspacing="5" cellpadding="0" border="0">
|
||||
<tr>
|
||||
<td>
|
||||
|
||||
</td>
|
||||
<td>
|
||||
|
||||
<p>
|
||||
|
||||
<p>
|
||||
Definition at line <a class="el" href="conf_8php-source.html#l00118">118</a> of file <a class="el" href="conf_8php-source.html">conf.php</a>. </td>
|
||||
</tr>
|
||||
</table>
|
||||
<a class="anchor" name="a7" doxytag="conf.php::UI_QFORM_REQUIRED"></a><p>
|
||||
<table class="mdTable" cellpadding="2" cellspacing="0">
|
||||
<tr>
|
||||
<td class="mdRow">
|
||||
<table cellpadding="0" cellspacing="0" border="0">
|
||||
<tr>
|
||||
<td class="md" nowrap valign="top">enum <a class="el" href="conf_8php.html#a7">UI_QFORM_REQUIRED</a> </td>
|
||||
</tr>
|
||||
</table>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
<table cellspacing="5" cellpadding="0" border="0">
|
||||
<tr>
|
||||
<td>
|
||||
|
||||
</td>
|
||||
<td>
|
||||
|
||||
<p>
|
||||
|
||||
<p>
|
||||
Definition at line <a class="el" href="conf_8php-source.html#l00116">116</a> of file <a class="el" href="conf_8php-source.html">conf.php</a>. </td>
|
||||
</tr>
|
||||
</table>
|
||||
<a class="anchor" name="a8" doxytag="conf.php::UI_QFORM_REQUIREDNOTE"></a><p>
|
||||
<table class="mdTable" cellpadding="2" cellspacing="0">
|
||||
<tr>
|
||||
<td class="mdRow">
|
||||
<table cellpadding="0" cellspacing="0" border="0">
|
||||
<tr>
|
||||
<td class="md" nowrap valign="top">enum <a class="el" href="conf_8php.html#a8">UI_QFORM_REQUIREDNOTE</a> </td>
|
||||
</tr>
|
||||
</table>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
<table cellspacing="5" cellpadding="0" border="0">
|
||||
<tr>
|
||||
<td>
|
||||
|
||||
</td>
|
||||
<td>
|
||||
|
||||
<p>
|
||||
|
||||
<p>
|
||||
Definition at line <a class="el" href="conf_8php-source.html#l00117">117</a> of file <a class="el" href="conf_8php-source.html">conf.php</a>. </td>
|
||||
</tr>
|
||||
</table>
|
||||
<hr><h2>Variable Documentation</h2>
|
||||
<a class="anchor" name="a0" doxytag="conf.php::$config"></a><p>
|
||||
<table class="mdTable" cellpadding="2" cellspacing="0">
|
||||
<tr>
|
||||
<td class="mdRow">
|
||||
<table cellpadding="0" cellspacing="0" border="0">
|
||||
<tr>
|
||||
<td class="md" nowrap valign="top">$config </td>
|
||||
</tr>
|
||||
</table>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
<table cellspacing="5" cellpadding="0" border="0">
|
||||
<tr>
|
||||
<td>
|
||||
|
||||
</td>
|
||||
<td>
|
||||
|
||||
<p>
|
||||
configuration structure:
|
||||
<p>
|
||||
<dl>
|
||||
<dt>dsn</dt>
|
||||
<dd>datasource setting </dd>
|
||||
<dt>tblNamePrefix </dt>
|
||||
<dd>prefix for table names in the database </dd>
|
||||
<dt>authCookieName </dt>
|
||||
<dd>secret token cookie name </dd>
|
||||
<dt>storageDir </dt>
|
||||
<dd>main directory for storing binary media files </dd>
|
||||
<dt>bufferDir </dt>
|
||||
<dd>directory for temporary files </dd>
|
||||
<dt>transDir </dt>
|
||||
<dd>directory for incomplete transferred files </dd>
|
||||
<dt>accessDir </dt>
|
||||
<dd>directory for symlinks to accessed files </dd>
|
||||
<dt>storageUrlPath</dt>
|
||||
<dd>path-URL-part of storageServer base dir </dd>
|
||||
<dt>storageXMLRPC</dt>
|
||||
<dd>XMLRPC server script address relative to storageUrlPath </dd>
|
||||
<dt>storageUrlHost, storageUrlPort</dt>
|
||||
<dd>host and port of storageServer </dd>
|
||||
<dt>archiveUrlPath</dt>
|
||||
<dd>path-URL-part of archiveServer base dir </dd>
|
||||
<dt>archiveXMLRPC</dt>
|
||||
<dd>XMLRPC server script address relative to archiveUrlPath </dd>
|
||||
<dt>archiveUrlHost, archiveUrlPort</dt>
|
||||
<dd>host and port of archiveServer </dd>
|
||||
</dl>
|
||||
|
||||
<p>
|
||||
Definition at line <a class="el" href="conf_8php-source.html#l00049">49</a> of file <a class="el" href="conf_8php-source.html">conf.php</a>.
|
||||
<p>
|
||||
Referenced by <a class="el" href="ui__browser_8class_8php-source.html#l00015">uiBrowser::uiBrowser()</a>, and <a class="el" href="ui__handler_8class_8php-source.html#l00011">uiHandler::uiHandler()</a>. </td>
|
||||
</tr>
|
||||
</table>
|
||||
<hr size="1"><address style="align: right;"><small>Generated on Wed Jan 12 16:22:49 2005 for LiveSupport - htmlUI module by
|
||||
<a href="http://www.doxygen.org/index.html">
|
||||
<img src="doxygen.png" alt="doxygen" align="middle" border="0"></a> 1.4.0 </small></address>
|
||||
</body>
|
||||
</html>
|
|
@ -1,39 +0,0 @@
|
|||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
|
||||
<html><head><meta http-equiv="Content-Type" content="text/html;charset=iso-8859-1">
|
||||
<title>LiveSupport&nbsp;-&nbsp;htmlUI&nbsp;module: var/ Directory Reference</title>
|
||||
<link href="doxygen.css" rel="stylesheet" type="text/css">
|
||||
</head><body>
|
||||
<!-- Generated by Doxygen 1.4.0 -->
|
||||
<div class="qindex"><a class="qindex" href="index.html">Main Page</a> | <a class="qindex" href="hierarchy.html">Class Hierarchy</a> | <a class="qindex" href="classes.html">Alphabetical List</a> | <a class="qindex" href="annotated.html">Class List</a> | <a class="qindex" href="dirs.html">Directories</a> | <a class="qindex" href="files.html">File List</a> | <a class="qindex" href="functions.html">Class Members</a> | <a class="qindex" href="globals.html">File Members</a></div>
|
||||
<div class="nav">
|
||||
<a class="el" href="dir_000000.html">var</a></div>
|
||||
<h1>var Directory Reference</h1><table border="0" cellpadding="0" cellspacing="0">
|
||||
<tr><td></td></tr>
|
||||
<tr><td colspan="2"><br><h2>Directories</h2></td></tr>
|
||||
<tr><td class="memItemLeft" nowrap align="right" valign="top">directory </td><td class="memItemRight" valign="bottom"><a class="el" href="dir_000001.html">html</a></td></tr>
|
||||
|
||||
<tr><td colspan="2"><br><h2>Files</h2></td></tr>
|
||||
<tr><td class="memItemLeft" nowrap align="right" valign="top">file </td><td class="memItemRight" valign="bottom"><a class="el" href="conf_8php.html">conf.php</a> <a href="conf_8php-source.html">[code]</a></td></tr>
|
||||
|
||||
<tr><td class="memItemLeft" nowrap align="right" valign="top">file </td><td class="memItemRight" valign="bottom"><a class="el" href="index_8php.html">index.php</a> <a href="index_8php-source.html">[code]</a></td></tr>
|
||||
|
||||
<tr><td class="memItemLeft" nowrap align="right" valign="top">file </td><td class="memItemRight" valign="bottom"><a class="el" href="SmartyExtensions_8inc_8php.html">SmartyExtensions.inc.php</a> <a href="SmartyExtensions_8inc_8php-source.html">[code]</a></td></tr>
|
||||
|
||||
<tr><td class="memItemLeft" nowrap align="right" valign="top">file </td><td class="memItemRight" valign="bottom"><a class="el" href="ui__base_8inc_8php.html">ui_base.inc.php</a> <a href="ui__base_8inc_8php-source.html">[code]</a></td></tr>
|
||||
|
||||
<tr><td class="memItemLeft" nowrap align="right" valign="top">file </td><td class="memItemRight" valign="bottom"><a class="el" href="ui__browser_8class_8php.html">ui_browser.class.php</a> <a href="ui__browser_8class_8php-source.html">[code]</a></td></tr>
|
||||
|
||||
<tr><td class="memItemLeft" nowrap align="right" valign="top">file </td><td class="memItemRight" valign="bottom"><a class="el" href="ui__browser__init_8php.html">ui_browser_init.php</a> <a href="ui__browser__init_8php-source.html">[code]</a></td></tr>
|
||||
|
||||
<tr><td class="memItemLeft" nowrap align="right" valign="top">file </td><td class="memItemRight" valign="bottom"><a class="el" href="ui__fmask_8inc_8php.html">ui_fmask.inc.php</a> <a href="ui__fmask_8inc_8php-source.html">[code]</a></td></tr>
|
||||
|
||||
<tr><td class="memItemLeft" nowrap align="right" valign="top">file </td><td class="memItemRight" valign="bottom"><a class="el" href="ui__handler_8class_8php.html">ui_handler.class.php</a> <a href="ui__handler_8class_8php-source.html">[code]</a></td></tr>
|
||||
|
||||
<tr><td class="memItemLeft" nowrap align="right" valign="top">file </td><td class="memItemRight" valign="bottom"><a class="el" href="ui__handler__init_8php.html">ui_handler_init.php</a> <a href="ui__handler__init_8php-source.html">[code]</a></td></tr>
|
||||
|
||||
</table>
|
||||
<hr size="1"><address style="align: right;"><small>Generated on Wed Jan 12 16:22:49 2005 for LiveSupport - htmlUI module by
|
||||
<a href="http://www.doxygen.org/index.html">
|
||||
<img src="doxygen.png" alt="doxygen" align="middle" border="0"></a> 1.4.0 </small></address>
|
||||
</body>
|
||||
</html>
|
|
@ -1,24 +0,0 @@
|
|||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
|
||||
<html><head><meta http-equiv="Content-Type" content="text/html;charset=iso-8859-1">
|
||||
<title>LiveSupport&nbsp;-&nbsp;htmlUI&nbsp;module: var/html/ Directory Reference</title>
|
||||
<link href="doxygen.css" rel="stylesheet" type="text/css">
|
||||
</head><body>
|
||||
<!-- Generated by Doxygen 1.4.0 -->
|
||||
<div class="qindex"><a class="qindex" href="index.html">Main Page</a> | <a class="qindex" href="hierarchy.html">Class Hierarchy</a> | <a class="qindex" href="classes.html">Alphabetical List</a> | <a class="qindex" href="annotated.html">Class List</a> | <a class="qindex" href="dirs.html">Directories</a> | <a class="qindex" href="files.html">File List</a> | <a class="qindex" href="functions.html">Class Members</a> | <a class="qindex" href="globals.html">File Members</a></div>
|
||||
<div class="nav">
|
||||
<a class="el" href="dir_000000.html">var</a> / <a class="el" href="dir_000001.html">html</a></div>
|
||||
<h1>html Directory Reference</h1><table border="0" cellpadding="0" cellspacing="0">
|
||||
<tr><td></td></tr>
|
||||
<tr><td colspan="2"><br><h2>Files</h2></td></tr>
|
||||
<tr><td class="memItemLeft" nowrap align="right" valign="top">file </td><td class="memItemRight" valign="bottom"><a class="el" href="html_2index_8php.html">html/index.php</a> <a href="html_2index_8php-source.html">[code]</a></td></tr>
|
||||
|
||||
<tr><td class="memItemLeft" nowrap align="right" valign="top">file </td><td class="memItemRight" valign="bottom"><a class="el" href="ui__browser_8php.html">ui_browser.php</a> <a href="ui__browser_8php-source.html">[code]</a></td></tr>
|
||||
|
||||
<tr><td class="memItemLeft" nowrap align="right" valign="top">file </td><td class="memItemRight" valign="bottom"><a class="el" href="ui__handler_8php.html">ui_handler.php</a> <a href="ui__handler_8php-source.html">[code]</a></td></tr>
|
||||
|
||||
</table>
|
||||
<hr size="1"><address style="align: right;"><small>Generated on Wed Jan 12 16:22:49 2005 for LiveSupport - htmlUI module by
|
||||
<a href="http://www.doxygen.org/index.html">
|
||||
<img src="doxygen.png" alt="doxygen" align="middle" border="0"></a> 1.4.0 </small></address>
|
||||
</body>
|
||||
</html>
|
|
@ -1,18 +0,0 @@
|
|||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
|
||||
<html><head><meta http-equiv="Content-Type" content="text/html;charset=iso-8859-1">
|
||||
<title>LiveSupport&nbsp;-&nbsp;htmlUI&nbsp;module: Directory Hierarchy</title>
|
||||
<link href="doxygen.css" rel="stylesheet" type="text/css">
|
||||
</head><body>
|
||||
<!-- Generated by Doxygen 1.4.0 -->
|
||||
<div class="qindex"><a class="qindex" href="index.html">Main Page</a> | <a class="qindex" href="hierarchy.html">Class Hierarchy</a> | <a class="qindex" href="classes.html">Alphabetical List</a> | <a class="qindex" href="annotated.html">Class List</a> | <a class="qindexHL" href="dirs.html">Directories</a> | <a class="qindex" href="files.html">File List</a> | <a class="qindex" href="functions.html">Class Members</a> | <a class="qindex" href="globals.html">File Members</a></div>
|
||||
<h1>LiveSupport - htmlUI module Directories</h1>This directory hierarchy is sorted roughly, but not completely, alphabetically:<ul>
|
||||
<li><a class="el" href="dir_000000.html">var</a>
|
||||
<ul>
|
||||
<li><a class="el" href="dir_000001.html">html</a>
|
||||
</ul>
|
||||
</ul>
|
||||
<hr size="1"><address style="align: right;"><small>Generated on Wed Jan 12 16:22:49 2005 for LiveSupport - htmlUI module by
|
||||
<a href="http://www.doxygen.org/index.html">
|
||||
<img src="doxygen.png" alt="doxygen" align="middle" border="0"></a> 1.4.0 </small></address>
|
||||
</body>
|
||||
</html>
|
|
@ -1,297 +0,0 @@
|
|||
BODY,H1,H2,H3,H4,H5,H6,P,CENTER,TD,TH,UL,DL,DIV {
|
||||
font-family: Geneva, Arial, Helvetica, sans-serif;
|
||||
}
|
||||
BODY,TD {
|
||||
font-size: 90%;
|
||||
}
|
||||
H1 {
|
||||
text-align: center;
|
||||
font-size: 160%;
|
||||
}
|
||||
H2 {
|
||||
font-size: 120%;
|
||||
}
|
||||
H3 {
|
||||
font-size: 110%;
|
||||
}
|
||||
CAPTION { font-weight: bold }
|
||||
DIV.qindex {
|
||||
width: 100%;
|
||||
background-color: #eeeeff;
|
||||
border: 1px solid #b0b0b0;
|
||||
text-align: center;
|
||||
margin: 2px;
|
||||
padding: 2px;
|
||||
line-height: 140%;
|
||||
}
|
||||
DIV.nav {
|
||||
width: 100%;
|
||||
background-color: #eeeeff;
|
||||
border: 1px solid #b0b0b0;
|
||||
text-align: center;
|
||||
margin: 2px;
|
||||
padding: 2px;
|
||||
line-height: 140%;
|
||||
}
|
||||
A.qindex {
|
||||
text-decoration: none;
|
||||
font-weight: bold;
|
||||
color: #1A419D;
|
||||
}
|
||||
A.qindex:visited {
|
||||
text-decoration: none;
|
||||
font-weight: bold;
|
||||
color: #1A419D
|
||||
}
|
||||
A.qindex:hover {
|
||||
text-decoration: none;
|
||||
background-color: #ddddff;
|
||||
}
|
||||
A.qindexHL {
|
||||
text-decoration: none;
|
||||
font-weight: bold;
|
||||
background-color: #6666cc;
|
||||
color: #ffffff;
|
||||
border: 1px double #9295C2;
|
||||
}
|
||||
A.qindexHL:hover {
|
||||
text-decoration: none;
|
||||
background-color: #6666cc;
|
||||
color: #ffffff;
|
||||
}
|
||||
A.qindexHL:visited { text-decoration: none; background-color: #6666cc; color: #ffffff }
|
||||
A.el { text-decoration: none; font-weight: bold }
|
||||
A.elRef { font-weight: bold }
|
||||
A.code:link { text-decoration: none; font-weight: normal; color: #0000FF}
|
||||
A.code:visited { text-decoration: none; font-weight: normal; color: #0000FF}
|
||||
A.codeRef:link { font-weight: normal; color: #0000FF}
|
||||
A.codeRef:visited { font-weight: normal; color: #0000FF}
|
||||
A:hover { text-decoration: none; background-color: #f2f2ff }
|
||||
DL.el { margin-left: -1cm }
|
||||
.fragment {
|
||||
font-family: monospace
|
||||
}
|
||||
PRE.fragment {
|
||||
border: 1px solid #CCCCCC;
|
||||
background-color: #f5f5f5;
|
||||
margin-top: 4px;
|
||||
margin-bottom: 4px;
|
||||
margin-left: 2px;
|
||||
margin-right: 8px;
|
||||
padding-left: 6px;
|
||||
padding-right: 6px;
|
||||
padding-top: 4px;
|
||||
padding-bottom: 4px;
|
||||
}
|
||||
DIV.ah { background-color: black; font-weight: bold; color: #ffffff; margin-bottom: 3px; margin-top: 3px }
|
||||
TD.md { background-color: #F4F4FB; font-weight: bold; }
|
||||
TD.mdPrefix {
|
||||
background-color: #F4F4FB;
|
||||
color: #606060;
|
||||
font-size: 80%;
|
||||
}
|
||||
TD.mdname1 { background-color: #F4F4FB; font-weight: bold; color: #602020; }
|
||||
TD.mdname { background-color: #F4F4FB; font-weight: bold; color: #602020; width: 600px; }
|
||||
DIV.groupHeader {
|
||||
margin-left: 16px;
|
||||
margin-top: 12px;
|
||||
margin-bottom: 6px;
|
||||
font-weight: bold;
|
||||
}
|
||||
DIV.groupText { margin-left: 16px; font-style: italic; font-size: 90% }
|
||||
BODY {
|
||||
background: white;
|
||||
color: black;
|
||||
margin-right: 20px;
|
||||
margin-left: 20px;
|
||||
}
|
||||
TD.indexkey {
|
||||
background-color: #eeeeff;
|
||||
font-weight: bold;
|
||||
padding-right : 10px;
|
||||
padding-top : 2px;
|
||||
padding-left : 10px;
|
||||
padding-bottom : 2px;
|
||||
margin-left : 0px;
|
||||
margin-right : 0px;
|
||||
margin-top : 2px;
|
||||
margin-bottom : 2px;
|
||||
border: 1px solid #CCCCCC;
|
||||
}
|
||||
TD.indexvalue {
|
||||
background-color: #eeeeff;
|
||||
font-style: italic;
|
||||
padding-right : 10px;
|
||||
padding-top : 2px;
|
||||
padding-left : 10px;
|
||||
padding-bottom : 2px;
|
||||
margin-left : 0px;
|
||||
margin-right : 0px;
|
||||
margin-top : 2px;
|
||||
margin-bottom : 2px;
|
||||
border: 1px solid #CCCCCC;
|
||||
}
|
||||
TR.memlist {
|
||||
background-color: #f0f0f0;
|
||||
}
|
||||
P.formulaDsp { text-align: center; }
|
||||
IMG.formulaDsp { }
|
||||
IMG.formulaInl { vertical-align: middle; }
|
||||
SPAN.keyword { color: #008000 }
|
||||
SPAN.keywordtype { color: #604020 }
|
||||
SPAN.keywordflow { color: #e08000 }
|
||||
SPAN.comment { color: #800000 }
|
||||
SPAN.preprocessor { color: #806020 }
|
||||
SPAN.stringliteral { color: #002080 }
|
||||
SPAN.charliteral { color: #008080 }
|
||||
.mdTable {
|
||||
border: 1px solid #868686;
|
||||
background-color: #F4F4FB;
|
||||
}
|
||||
.mdRow {
|
||||
padding: 8px 10px;
|
||||
}
|
||||
.mdescLeft {
|
||||
padding: 0px 8px 4px 8px;
|
||||
font-size: 80%;
|
||||
font-style: italic;
|
||||
background-color: #FAFAFA;
|
||||
border-top: 1px none #E0E0E0;
|
||||
border-right: 1px none #E0E0E0;
|
||||
border-bottom: 1px none #E0E0E0;
|
||||
border-left: 1px none #E0E0E0;
|
||||
margin: 0px;
|
||||
}
|
||||
.mdescRight {
|
||||
padding: 0px 8px 4px 8px;
|
||||
font-size: 80%;
|
||||
font-style: italic;
|
||||
background-color: #FAFAFA;
|
||||
border-top: 1px none #E0E0E0;
|
||||
border-right: 1px none #E0E0E0;
|
||||
border-bottom: 1px none #E0E0E0;
|
||||
border-left: 1px none #E0E0E0;
|
||||
margin: 0px;
|
||||
}
|
||||
.memItemLeft {
|
||||
padding: 1px 0px 0px 8px;
|
||||
margin: 4px;
|
||||
border-top-width: 1px;
|
||||
border-right-width: 1px;
|
||||
border-bottom-width: 1px;
|
||||
border-left-width: 1px;
|
||||
border-top-color: #E0E0E0;
|
||||
border-right-color: #E0E0E0;
|
||||
border-bottom-color: #E0E0E0;
|
||||
border-left-color: #E0E0E0;
|
||||
border-top-style: solid;
|
||||
border-right-style: none;
|
||||
border-bottom-style: none;
|
||||
border-left-style: none;
|
||||
background-color: #FAFAFA;
|
||||
font-size: 80%;
|
||||
}
|
||||
.memItemRight {
|
||||
padding: 1px 8px 0px 8px;
|
||||
margin: 4px;
|
||||
border-top-width: 1px;
|
||||
border-right-width: 1px;
|
||||
border-bottom-width: 1px;
|
||||
border-left-width: 1px;
|
||||
border-top-color: #E0E0E0;
|
||||
border-right-color: #E0E0E0;
|
||||
border-bottom-color: #E0E0E0;
|
||||
border-left-color: #E0E0E0;
|
||||
border-top-style: solid;
|
||||
border-right-style: none;
|
||||
border-bottom-style: none;
|
||||
border-left-style: none;
|
||||
background-color: #FAFAFA;
|
||||
font-size: 80%;
|
||||
}
|
||||
.memTemplItemLeft {
|
||||
padding: 1px 0px 0px 8px;
|
||||
margin: 4px;
|
||||
border-top-width: 1px;
|
||||
border-right-width: 1px;
|
||||
border-bottom-width: 1px;
|
||||
border-left-width: 1px;
|
||||
border-top-color: #E0E0E0;
|
||||
border-right-color: #E0E0E0;
|
||||
border-bottom-color: #E0E0E0;
|
||||
border-left-color: #E0E0E0;
|
||||
border-top-style: none;
|
||||
border-right-style: none;
|
||||
border-bottom-style: none;
|
||||
border-left-style: none;
|
||||
background-color: #FAFAFA;
|
||||
font-size: 80%;
|
||||
}
|
||||
.memTemplItemRight {
|
||||
padding: 1px 8px 0px 8px;
|
||||
margin: 4px;
|
||||
border-top-width: 1px;
|
||||
border-right-width: 1px;
|
||||
border-bottom-width: 1px;
|
||||
border-left-width: 1px;
|
||||
border-top-color: #E0E0E0;
|
||||
border-right-color: #E0E0E0;
|
||||
border-bottom-color: #E0E0E0;
|
||||
border-left-color: #E0E0E0;
|
||||
border-top-style: none;
|
||||
border-right-style: none;
|
||||
border-bottom-style: none;
|
||||
border-left-style: none;
|
||||
background-color: #FAFAFA;
|
||||
font-size: 80%;
|
||||
}
|
||||
.memTemplParams {
|
||||
padding: 1px 0px 0px 8px;
|
||||
margin: 4px;
|
||||
border-top-width: 1px;
|
||||
border-right-width: 1px;
|
||||
border-bottom-width: 1px;
|
||||
border-left-width: 1px;
|
||||
border-top-color: #E0E0E0;
|
||||
border-right-color: #E0E0E0;
|
||||
border-bottom-color: #E0E0E0;
|
||||
border-left-color: #E0E0E0;
|
||||
border-top-style: solid;
|
||||
border-right-style: none;
|
||||
border-bottom-style: none;
|
||||
border-left-style: none;
|
||||
color: #606060;
|
||||
background-color: #FAFAFA;
|
||||
font-size: 80%;
|
||||
}
|
||||
.search { color: #003399;
|
||||
font-weight: bold;
|
||||
}
|
||||
FORM.search {
|
||||
margin-bottom: 0px;
|
||||
margin-top: 0px;
|
||||
}
|
||||
INPUT.search { font-size: 75%;
|
||||
color: #000080;
|
||||
font-weight: normal;
|
||||
background-color: #eeeeff;
|
||||
}
|
||||
TD.tiny { font-size: 75%;
|
||||
}
|
||||
a {
|
||||
color: #252E78;
|
||||
}
|
||||
a:visited {
|
||||
color: #3D2185;
|
||||
}
|
||||
.dirtab { padding: 4px;
|
||||
border-collapse: collapse;
|
||||
border: 1px solid #b0b0b0;
|
||||
}
|
||||
TH.dirtab { background: #eeeeff;
|
||||
font-weight: bold;
|
||||
}
|
||||
HR { height: 1px;
|
||||
border: none;
|
||||
border-top: 1px solid black;
|
||||
}
|
Binary file not shown.
Before Width: | Height: | Size: 1.3 KiB |
|
@ -1,26 +0,0 @@
|
|||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
|
||||
<html><head><meta http-equiv="Content-Type" content="text/html;charset=iso-8859-1">
|
||||
<title>LiveSupport&nbsp;-&nbsp;htmlUI&nbsp;module: File Index</title>
|
||||
<link href="doxygen.css" rel="stylesheet" type="text/css">
|
||||
</head><body>
|
||||
<!-- Generated by Doxygen 1.4.0 -->
|
||||
<div class="qindex"><a class="qindex" href="index.html">Main Page</a> | <a class="qindex" href="hierarchy.html">Class Hierarchy</a> | <a class="qindex" href="classes.html">Alphabetical List</a> | <a class="qindex" href="annotated.html">Class List</a> | <a class="qindex" href="dirs.html">Directories</a> | <a class="qindexHL" href="files.html">File List</a> | <a class="qindex" href="functions.html">Class Members</a> | <a class="qindex" href="globals.html">File Members</a></div>
|
||||
<h1>LiveSupport - htmlUI module File List</h1>Here is a list of all files with brief descriptions:<table>
|
||||
<tr><td class="indexkey"><a class="el" href="conf_8php.html">conf.php</a> <a href="conf_8php-source.html">[code]</a></td><td class="indexvalue"></td></tr>
|
||||
<tr><td class="indexkey"><a class="el" href="index_8php.html">index.php</a> <a href="index_8php-source.html">[code]</a></td><td class="indexvalue"></td></tr>
|
||||
<tr><td class="indexkey"><a class="el" href="html_2index_8php.html">html/index.php</a> <a href="html_2index_8php-source.html">[code]</a></td><td class="indexvalue"></td></tr>
|
||||
<tr><td class="indexkey"><a class="el" href="SmartyExtensions_8inc_8php.html">SmartyExtensions.inc.php</a> <a href="SmartyExtensions_8inc_8php-source.html">[code]</a></td><td class="indexvalue"></td></tr>
|
||||
<tr><td class="indexkey"><a class="el" href="ui__base_8inc_8php.html">ui_base.inc.php</a> <a href="ui__base_8inc_8php-source.html">[code]</a></td><td class="indexvalue"></td></tr>
|
||||
<tr><td class="indexkey"><a class="el" href="ui__browser_8class_8php.html">ui_browser.class.php</a> <a href="ui__browser_8class_8php-source.html">[code]</a></td><td class="indexvalue"></td></tr>
|
||||
<tr><td class="indexkey"><a class="el" href="ui__browser_8php.html">ui_browser.php</a> <a href="ui__browser_8php-source.html">[code]</a></td><td class="indexvalue"></td></tr>
|
||||
<tr><td class="indexkey"><a class="el" href="ui__browser__init_8php.html">ui_browser_init.php</a> <a href="ui__browser__init_8php-source.html">[code]</a></td><td class="indexvalue"></td></tr>
|
||||
<tr><td class="indexkey"><a class="el" href="ui__fmask_8inc_8php.html">ui_fmask.inc.php</a> <a href="ui__fmask_8inc_8php-source.html">[code]</a></td><td class="indexvalue"></td></tr>
|
||||
<tr><td class="indexkey"><a class="el" href="ui__handler_8class_8php.html">ui_handler.class.php</a> <a href="ui__handler_8class_8php-source.html">[code]</a></td><td class="indexvalue"></td></tr>
|
||||
<tr><td class="indexkey"><a class="el" href="ui__handler_8php.html">ui_handler.php</a> <a href="ui__handler_8php-source.html">[code]</a></td><td class="indexvalue"></td></tr>
|
||||
<tr><td class="indexkey"><a class="el" href="ui__handler__init_8php.html">ui_handler_init.php</a> <a href="ui__handler__init_8php-source.html">[code]</a></td><td class="indexvalue"></td></tr>
|
||||
</table>
|
||||
<hr size="1"><address style="align: right;"><small>Generated on Wed Jan 12 16:22:49 2005 for LiveSupport - htmlUI module by
|
||||
<a href="http://www.doxygen.org/index.html">
|
||||
<img src="doxygen.png" alt="doxygen" align="middle" border="0"></a> 1.4.0 </small></address>
|
||||
</body>
|
||||
</html>
|
|
@ -1,88 +0,0 @@
|
|||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
|
||||
<html><head><meta http-equiv="Content-Type" content="text/html;charset=iso-8859-1">
|
||||
<title>LiveSupport&nbsp;-&nbsp;htmlUI&nbsp;module: Class Members</title>
|
||||
<link href="doxygen.css" rel="stylesheet" type="text/css">
|
||||
</head><body>
|
||||
<!-- Generated by Doxygen 1.4.0 -->
|
||||
<div class="qindex"><a class="qindex" href="index.html">Main Page</a> | <a class="qindex" href="hierarchy.html">Class Hierarchy</a> | <a class="qindex" href="classes.html">Alphabetical List</a> | <a class="qindex" href="annotated.html">Class List</a> | <a class="qindex" href="dirs.html">Directories</a> | <a class="qindex" href="files.html">File List</a> | <a class="qindexHL" href="functions.html">Class Members</a> | <a class="qindex" href="globals.html">File Members</a></div>
|
||||
<div class="qindex"><a class="qindexHL" href="functions.html">All</a> | <a class="qindex" href="functions_func.html">Functions</a> | <a class="qindex" href="functions_vars.html">Variables</a></div>
|
||||
<div class="qindex"><a class="qindex" href="#index_$">$</a> | <a class="qindex" href="#index__">_</a> | <a class="qindex" href="#index_a">a</a> | <a class="qindex" href="#index_c">c</a> | <a class="qindex" href="#index_d">d</a> | <a class="qindex" href="#index_g">g</a> | <a class="qindex" href="#index_l">l</a> | <a class="qindex" href="#index_m">m</a> | <a class="qindex" href="#index_n">n</a> | <a class="qindex" href="#index_p">p</a> | <a class="qindex" href="#index_r">r</a> | <a class="qindex" href="#index_s">s</a> | <a class="qindex" href="#index_t">t</a> | <a class="qindex" href="#index_u">u</a></div>
|
||||
|
||||
<p>
|
||||
|
||||
<p>
|
||||
Here is a list of all class members with links to the classes they belong to:<h3><a class="anchor" name="index_$">- $ -</a></h3><ul>
|
||||
<li>$alertMsg
|
||||
: <a class="el" href="classuiHandler.html#o1">uiHandler</a>, <a class="el" href="classuiBrowser.html#o0">uiBrowser</a><li>$redirUrl
|
||||
: <a class="el" href="classuiHandler.html#o0">uiHandler</a></ul>
|
||||
<h3><a class="anchor" name="index__">- _ -</a></h3><ul>
|
||||
<li>_parseArr2Form()
|
||||
: <a class="el" href="classuiBase.html#a1">uiBase</a><li>_validateForm()
|
||||
: <a class="el" href="classuiHandler.html#a20">uiHandler</a></ul>
|
||||
<h3><a class="anchor" name="index_a">- a -</a></h3><ul>
|
||||
<li>addPerm()
|
||||
: <a class="el" href="classuiHandler.html#a15">uiHandler</a><li>addSubj()
|
||||
: <a class="el" href="classuiHandler.html#a12">uiHandler</a><li>addSubj2Group()
|
||||
: <a class="el" href="classuiHandler.html#a17">uiHandler</a><li>alertMsg()
|
||||
: <a class="el" href="classuiBrowser.html#a1">uiBrowser</a></ul>
|
||||
<h3><a class="anchor" name="index_c">- c -</a></h3><ul>
|
||||
<li>copy()
|
||||
: <a class="el" href="classuiHandler.html#a7">uiHandler</a></ul>
|
||||
<h3><a class="anchor" name="index_d">- d -</a></h3><ul>
|
||||
<li>delete()
|
||||
: <a class="el" href="classuiHandler.html#a8">uiHandler</a></ul>
|
||||
<h3><a class="anchor" name="index_g">- g -</a></h3><ul>
|
||||
<li>getAddSubjectForm()
|
||||
: <a class="el" href="classuiBrowser.html#a8">uiBrowser</a><li>getChangePasswdForm()
|
||||
: <a class="el" href="classuiBrowser.html#a9">uiBrowser</a><li>getFile()
|
||||
: <a class="el" href="classuiHandler.html#a9">uiHandler</a>, <a class="el" href="classuiBrowser.html#a15">uiBrowser</a><li>getGroups()
|
||||
: <a class="el" href="classuiBrowser.html#a10">uiBrowser</a><li>getInfo()
|
||||
: <a class="el" href="classuiHandler.html#a11">uiHandler</a>, <a class="el" href="classuiBrowser.html#a17">uiBrowser</a><li>getMdata()
|
||||
: <a class="el" href="classuiHandler.html#a10">uiHandler</a>, <a class="el" href="classuiBrowser.html#a16">uiBrowser</a><li>getMetadataForm()
|
||||
: <a class="el" href="classuiBrowser.html#a18">uiBrowser</a><li>getNewFileData()
|
||||
: <a class="el" href="classuiBrowser.html#a13">uiBrowser</a><li>getNewFileForm()
|
||||
: <a class="el" href="classuiBrowser.html#a5">uiBrowser</a><li>getPermissions()
|
||||
: <a class="el" href="classuiBrowser.html#a12">uiBrowser</a><li>getSearchForm()
|
||||
: <a class="el" href="classuiBrowser.html#a6">uiBrowser</a><li>getSearchRes()
|
||||
: <a class="el" href="classuiBrowser.html#a14">uiBrowser</a><li>getStructure()
|
||||
: <a class="el" href="classuiBrowser.html#a4">uiBrowser</a><li>getSubj2GroupForm()
|
||||
: <a class="el" href="classuiBrowser.html#a11">uiBrowser</a><li>getSubjects()
|
||||
: <a class="el" href="classuiBrowser.html#a7">uiBrowser</a><li>getUserInfo()
|
||||
: <a class="el" href="classuiBrowser.html#a3">uiBrowser</a></ul>
|
||||
<h3><a class="anchor" name="index_l">- l -</a></h3><ul>
|
||||
<li>login()
|
||||
: <a class="el" href="classuiHandler.html#a1">uiHandler</a><li>loginform()
|
||||
: <a class="el" href="classuiBrowser.html#a2">uiBrowser</a><li>logout()
|
||||
: <a class="el" href="classuiHandler.html#a2">uiHandler</a></ul>
|
||||
<h3><a class="anchor" name="index_m">- m -</a></h3><ul>
|
||||
<li>move()
|
||||
: <a class="el" href="classuiHandler.html#a6">uiHandler</a></ul>
|
||||
<h3><a class="anchor" name="index_n">- n -</a></h3><ul>
|
||||
<li>newFolder()
|
||||
: <a class="el" href="classuiHandler.html#a4">uiHandler</a></ul>
|
||||
<h3><a class="anchor" name="index_p">- p -</a></h3><ul>
|
||||
<li>passwd()
|
||||
: <a class="el" href="classuiHandler.html#a14">uiHandler</a></ul>
|
||||
<h3><a class="anchor" name="index_r">- r -</a></h3><ul>
|
||||
<li>removePerm()
|
||||
: <a class="el" href="classuiHandler.html#a16">uiHandler</a><li>removeSubj()
|
||||
: <a class="el" href="classuiHandler.html#a13">uiHandler</a><li>removeSubjFromGr()
|
||||
: <a class="el" href="classuiHandler.html#a18">uiHandler</a><li>rename()
|
||||
: <a class="el" href="classuiHandler.html#a5">uiHandler</a></ul>
|
||||
<h3><a class="anchor" name="index_s">- s -</a></h3><ul>
|
||||
<li>storeSystemPrefs()
|
||||
: <a class="el" href="classuiHandler.html#a19">uiHandler</a><li>systemPrefs()
|
||||
: <a class="el" href="classuiBrowser.html#a19">uiBrowser</a></ul>
|
||||
<h3><a class="anchor" name="index_t">- t -</a></h3><ul>
|
||||
<li>tra()
|
||||
: <a class="el" href="classuiBase.html#a0">uiBase</a></ul>
|
||||
<h3><a class="anchor" name="index_u">- u -</a></h3><ul>
|
||||
<li>uiBrowser()
|
||||
: <a class="el" href="classuiBrowser.html#a0">uiBrowser</a><li>uiHandler()
|
||||
: <a class="el" href="classuiHandler.html#a0">uiHandler</a><li>upload()
|
||||
: <a class="el" href="classuiHandler.html#a3">uiHandler</a></ul>
|
||||
<hr size="1"><address style="align: right;"><small>Generated on Wed Jan 12 16:22:49 2005 for LiveSupport - htmlUI module by
|
||||
<a href="http://www.doxygen.org/index.html">
|
||||
<img src="doxygen.png" alt="doxygen" align="middle" border="0"></a> 1.4.0 </small></address>
|
||||
</body>
|
||||
</html>
|
|
@ -1,84 +0,0 @@
|
|||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
|
||||
<html><head><meta http-equiv="Content-Type" content="text/html;charset=iso-8859-1">
|
||||
<title>LiveSupport&nbsp;-&nbsp;htmlUI&nbsp;module: Class Members - Functions</title>
|
||||
<link href="doxygen.css" rel="stylesheet" type="text/css">
|
||||
</head><body>
|
||||
<!-- Generated by Doxygen 1.4.0 -->
|
||||
<div class="qindex"><a class="qindex" href="index.html">Main Page</a> | <a class="qindex" href="hierarchy.html">Class Hierarchy</a> | <a class="qindex" href="classes.html">Alphabetical List</a> | <a class="qindex" href="annotated.html">Class List</a> | <a class="qindex" href="dirs.html">Directories</a> | <a class="qindex" href="files.html">File List</a> | <a class="qindexHL" href="functions.html">Class Members</a> | <a class="qindex" href="globals.html">File Members</a></div>
|
||||
<div class="qindex"><a class="qindex" href="functions.html">All</a> | <a class="qindexHL" href="functions_func.html">Functions</a> | <a class="qindex" href="functions_vars.html">Variables</a></div>
|
||||
<div class="qindex"><a class="qindex" href="#index__">_</a> | <a class="qindex" href="#index_a">a</a> | <a class="qindex" href="#index_c">c</a> | <a class="qindex" href="#index_d">d</a> | <a class="qindex" href="#index_g">g</a> | <a class="qindex" href="#index_l">l</a> | <a class="qindex" href="#index_m">m</a> | <a class="qindex" href="#index_n">n</a> | <a class="qindex" href="#index_p">p</a> | <a class="qindex" href="#index_r">r</a> | <a class="qindex" href="#index_s">s</a> | <a class="qindex" href="#index_t">t</a> | <a class="qindex" href="#index_u">u</a></div>
|
||||
|
||||
<p>
|
||||
|
||||
<p>
|
||||
<h3><a class="anchor" name="index__">- _ -</a></h3><ul>
|
||||
<li>_parseArr2Form()
|
||||
: <a class="el" href="classuiBase.html#a1">uiBase</a><li>_validateForm()
|
||||
: <a class="el" href="classuiHandler.html#a20">uiHandler</a></ul>
|
||||
<h3><a class="anchor" name="index_a">- a -</a></h3><ul>
|
||||
<li>addPerm()
|
||||
: <a class="el" href="classuiHandler.html#a15">uiHandler</a><li>addSubj()
|
||||
: <a class="el" href="classuiHandler.html#a12">uiHandler</a><li>addSubj2Group()
|
||||
: <a class="el" href="classuiHandler.html#a17">uiHandler</a><li>alertMsg()
|
||||
: <a class="el" href="classuiBrowser.html#a1">uiBrowser</a></ul>
|
||||
<h3><a class="anchor" name="index_c">- c -</a></h3><ul>
|
||||
<li>copy()
|
||||
: <a class="el" href="classuiHandler.html#a7">uiHandler</a></ul>
|
||||
<h3><a class="anchor" name="index_d">- d -</a></h3><ul>
|
||||
<li>delete()
|
||||
: <a class="el" href="classuiHandler.html#a8">uiHandler</a></ul>
|
||||
<h3><a class="anchor" name="index_g">- g -</a></h3><ul>
|
||||
<li>getAddSubjectForm()
|
||||
: <a class="el" href="classuiBrowser.html#a8">uiBrowser</a><li>getChangePasswdForm()
|
||||
: <a class="el" href="classuiBrowser.html#a9">uiBrowser</a><li>getFile()
|
||||
: <a class="el" href="classuiHandler.html#a9">uiHandler</a>, <a class="el" href="classuiBrowser.html#a15">uiBrowser</a><li>getGroups()
|
||||
: <a class="el" href="classuiBrowser.html#a10">uiBrowser</a><li>getInfo()
|
||||
: <a class="el" href="classuiHandler.html#a11">uiHandler</a>, <a class="el" href="classuiBrowser.html#a17">uiBrowser</a><li>getMdata()
|
||||
: <a class="el" href="classuiHandler.html#a10">uiHandler</a>, <a class="el" href="classuiBrowser.html#a16">uiBrowser</a><li>getMetadataForm()
|
||||
: <a class="el" href="classuiBrowser.html#a18">uiBrowser</a><li>getNewFileData()
|
||||
: <a class="el" href="classuiBrowser.html#a13">uiBrowser</a><li>getNewFileForm()
|
||||
: <a class="el" href="classuiBrowser.html#a5">uiBrowser</a><li>getPermissions()
|
||||
: <a class="el" href="classuiBrowser.html#a12">uiBrowser</a><li>getSearchForm()
|
||||
: <a class="el" href="classuiBrowser.html#a6">uiBrowser</a><li>getSearchRes()
|
||||
: <a class="el" href="classuiBrowser.html#a14">uiBrowser</a><li>getStructure()
|
||||
: <a class="el" href="classuiBrowser.html#a4">uiBrowser</a><li>getSubj2GroupForm()
|
||||
: <a class="el" href="classuiBrowser.html#a11">uiBrowser</a><li>getSubjects()
|
||||
: <a class="el" href="classuiBrowser.html#a7">uiBrowser</a><li>getUserInfo()
|
||||
: <a class="el" href="classuiBrowser.html#a3">uiBrowser</a></ul>
|
||||
<h3><a class="anchor" name="index_l">- l -</a></h3><ul>
|
||||
<li>login()
|
||||
: <a class="el" href="classuiHandler.html#a1">uiHandler</a><li>loginform()
|
||||
: <a class="el" href="classuiBrowser.html#a2">uiBrowser</a><li>logout()
|
||||
: <a class="el" href="classuiHandler.html#a2">uiHandler</a></ul>
|
||||
<h3><a class="anchor" name="index_m">- m -</a></h3><ul>
|
||||
<li>move()
|
||||
: <a class="el" href="classuiHandler.html#a6">uiHandler</a></ul>
|
||||
<h3><a class="anchor" name="index_n">- n -</a></h3><ul>
|
||||
<li>newFolder()
|
||||
: <a class="el" href="classuiHandler.html#a4">uiHandler</a></ul>
|
||||
<h3><a class="anchor" name="index_p">- p -</a></h3><ul>
|
||||
<li>passwd()
|
||||
: <a class="el" href="classuiHandler.html#a14">uiHandler</a></ul>
|
||||
<h3><a class="anchor" name="index_r">- r -</a></h3><ul>
|
||||
<li>removePerm()
|
||||
: <a class="el" href="classuiHandler.html#a16">uiHandler</a><li>removeSubj()
|
||||
: <a class="el" href="classuiHandler.html#a13">uiHandler</a><li>removeSubjFromGr()
|
||||
: <a class="el" href="classuiHandler.html#a18">uiHandler</a><li>rename()
|
||||
: <a class="el" href="classuiHandler.html#a5">uiHandler</a></ul>
|
||||
<h3><a class="anchor" name="index_s">- s -</a></h3><ul>
|
||||
<li>storeSystemPrefs()
|
||||
: <a class="el" href="classuiHandler.html#a19">uiHandler</a><li>systemPrefs()
|
||||
: <a class="el" href="classuiBrowser.html#a19">uiBrowser</a></ul>
|
||||
<h3><a class="anchor" name="index_t">- t -</a></h3><ul>
|
||||
<li>tra()
|
||||
: <a class="el" href="classuiBase.html#a0">uiBase</a></ul>
|
||||
<h3><a class="anchor" name="index_u">- u -</a></h3><ul>
|
||||
<li>uiBrowser()
|
||||
: <a class="el" href="classuiBrowser.html#a0">uiBrowser</a><li>uiHandler()
|
||||
: <a class="el" href="classuiHandler.html#a0">uiHandler</a><li>upload()
|
||||
: <a class="el" href="classuiHandler.html#a3">uiHandler</a></ul>
|
||||
<hr size="1"><address style="align: right;"><small>Generated on Wed Jan 12 16:22:49 2005 for LiveSupport - htmlUI module by
|
||||
<a href="http://www.doxygen.org/index.html">
|
||||
<img src="doxygen.png" alt="doxygen" align="middle" border="0"></a> 1.4.0 </small></address>
|
||||
</body>
|
||||
</html>
|
|
@ -1,19 +0,0 @@
|
|||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
|
||||
<html><head><meta http-equiv="Content-Type" content="text/html;charset=iso-8859-1">
|
||||
<title>LiveSupport&nbsp;-&nbsp;htmlUI&nbsp;module: Class Members - Variables</title>
|
||||
<link href="doxygen.css" rel="stylesheet" type="text/css">
|
||||
</head><body>
|
||||
<!-- Generated by Doxygen 1.4.0 -->
|
||||
<div class="qindex"><a class="qindex" href="index.html">Main Page</a> | <a class="qindex" href="hierarchy.html">Class Hierarchy</a> | <a class="qindex" href="classes.html">Alphabetical List</a> | <a class="qindex" href="annotated.html">Class List</a> | <a class="qindex" href="dirs.html">Directories</a> | <a class="qindex" href="files.html">File List</a> | <a class="qindexHL" href="functions.html">Class Members</a> | <a class="qindex" href="globals.html">File Members</a></div>
|
||||
<div class="qindex"><a class="qindex" href="functions.html">All</a> | <a class="qindex" href="functions_func.html">Functions</a> | <a class="qindexHL" href="functions_vars.html">Variables</a></div>
|
||||
|
||||
<p>
|
||||
<ul>
|
||||
<li>$alertMsg
|
||||
: <a class="el" href="classuiHandler.html#o1">uiHandler</a>, <a class="el" href="classuiBrowser.html#o0">uiBrowser</a><li>$redirUrl
|
||||
: <a class="el" href="classuiHandler.html#o0">uiHandler</a></ul>
|
||||
<hr size="1"><address style="align: right;"><small>Generated on Wed Jan 12 16:22:49 2005 for LiveSupport - htmlUI module by
|
||||
<a href="http://www.doxygen.org/index.html">
|
||||
<img src="doxygen.png" alt="doxygen" align="middle" border="0"></a> 1.4.0 </small></address>
|
||||
</body>
|
||||
</html>
|
|
@ -1,103 +0,0 @@
|
|||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
|
||||
<html><head><meta http-equiv="Content-Type" content="text/html;charset=iso-8859-1">
|
||||
<title>LiveSupport&nbsp;-&nbsp;htmlUI&nbsp;module: File Members</title>
|
||||
<link href="doxygen.css" rel="stylesheet" type="text/css">
|
||||
</head><body>
|
||||
<!-- Generated by Doxygen 1.4.0 -->
|
||||
<div class="qindex"><a class="qindex" href="index.html">Main Page</a> | <a class="qindex" href="hierarchy.html">Class Hierarchy</a> | <a class="qindex" href="classes.html">Alphabetical List</a> | <a class="qindex" href="annotated.html">Class List</a> | <a class="qindex" href="dirs.html">Directories</a> | <a class="qindex" href="files.html">File List</a> | <a class="qindex" href="functions.html">Class Members</a> | <a class="qindexHL" href="globals.html">File Members</a></div>
|
||||
<div class="qindex"><a class="qindexHL" href="globals.html">All</a> | <a class="qindex" href="globals_func.html">Functions</a> | <a class="qindex" href="globals_vars.html">Variables</a> | <a class="qindex" href="globals_enum.html">Enumerations</a></div>
|
||||
<div class="qindex"><a class="qindex" href="#index_$">$</a> | <a class="qindex" href="#index__">_</a> | <a class="qindex" href="#index_a">a</a> | <a class="qindex" href="#index_b">b</a> | <a class="qindex" href="#index_c">c</a> | <a class="qindex" href="#index_d">d</a> | <a class="qindex" href="#index_e">e</a> | <a class="qindex" href="#index_g">g</a> | <a class="qindex" href="#index_i">i</a> | <a class="qindex" href="#index_l">l</a> | <a class="qindex" href="#index_m">m</a> | <a class="qindex" href="#index_n">n</a> | <a class="qindex" href="#index_p">p</a> | <a class="qindex" href="#index_r">r</a> | <a class="qindex" href="#index_s">s</a> | <a class="qindex" href="#index_u">u</a></div>
|
||||
|
||||
<p>
|
||||
|
||||
<p>
|
||||
Here is a list of all file members with links to the files they belong to:<h3><a class="anchor" name="index_$">- $ -</a></h3><ul>
|
||||
<li>$_FILES
|
||||
: <a class="el" href="ui__handler_8php.html#a3">ui_handler.php</a><li>$_REQUEST
|
||||
: <a class="el" href="ui__handler_8php.html#a11">ui_handler.php</a><li>$config
|
||||
: <a class="el" href="conf_8php.html#a0">conf.php</a><li>$Smarty
|
||||
: <a class="el" href="ui__browser__init_8php.html#a0">ui_browser_init.php</a><li>$ui_fmask
|
||||
: <a class="el" href="ui__handler_8php.html#a5">ui_handler.php</a>, <a class="el" href="ui__fmask_8inc_8php.html#a0">ui_fmask.inc.php</a><li>$uiBase
|
||||
: <a class="el" href="ui__browser__init_8php.html#a2">ui_browser_init.php</a><li>$uiBrowser
|
||||
: <a class="el" href="ui__browser__init_8php.html#a1">ui_browser_init.php</a><li>$uiHandler
|
||||
: <a class="el" href="ui__handler__init_8php.html#a0">ui_handler_init.php</a></ul>
|
||||
<h3><a class="anchor" name="index__">- _ -</a></h3><ul>
|
||||
<li>__pad0__
|
||||
: <a class="el" href="ui__handler_8php.html#a21">ui_handler.php</a></ul>
|
||||
<h3><a class="anchor" name="index_a">- a -</a></h3><ul>
|
||||
<li>addGroup
|
||||
: <a class="el" href="ui__handler_8php.html#a13">ui_handler.php</a>, <a class="el" href="ui__browser_8php.html#a6">ui_browser.php</a><li>addPerm
|
||||
: <a class="el" href="ui__handler_8php.html#a16">ui_handler.php</a><li>addSubj2Group
|
||||
: <a class="el" href="ui__handler_8php.html#a18">ui_handler.php</a><li>addUser
|
||||
: <a class="el" href="ui__handler_8php.html#a12">ui_handler.php</a></ul>
|
||||
<h3><a class="anchor" name="index_b">- b -</a></h3><ul>
|
||||
<li>break
|
||||
: <a class="el" href="ui__handler_8php.html#a0">ui_handler.php</a>, <a class="el" href="ui__browser_8php.html#a0">ui_browser.php</a></ul>
|
||||
<h3><a class="anchor" name="index_c">- c -</a></h3><ul>
|
||||
<li>changePasswd
|
||||
: <a class="el" href="ui__handler_8php.html#a15">ui_handler.php</a><li>copy
|
||||
: <a class="el" href="ui__handler_8php.html#a9">ui_handler.php</a></ul>
|
||||
<h3><a class="anchor" name="index_d">- d -</a></h3><ul>
|
||||
<li>delete
|
||||
: <a class="el" href="ui__handler_8php.html#a10">ui_handler.php</a></ul>
|
||||
<h3><a class="anchor" name="index_e">- e -</a></h3><ul>
|
||||
<li>editMetaData
|
||||
: <a class="el" href="ui__browser_8php.html#a12">ui_browser.php</a><li>errCallBack()
|
||||
: <a class="el" href="ui__base_8inc_8php.html#a0">ui_base.inc.php</a></ul>
|
||||
<h3><a class="anchor" name="index_g">- g -</a></h3><ul>
|
||||
<li>getFile
|
||||
: <a class="el" href="ui__browser_8php.html#a9">ui_browser.php</a><li>getInfo
|
||||
: <a class="el" href="ui__browser_8php.html#a11">ui_browser.php</a><li>getMdata
|
||||
: <a class="el" href="ui__browser_8php.html#a10">ui_browser.php</a><li>groups
|
||||
: <a class="el" href="ui__browser_8php.html#a8">ui_browser.php</a></ul>
|
||||
<h3><a class="anchor" name="index_i">- i -</a></h3><ul>
|
||||
<li>id
|
||||
: <a class="el" href="ui__handler_8php.html#a4">ui_handler.php</a></ul>
|
||||
<h3><a class="anchor" name="index_l">- l -</a></h3><ul>
|
||||
<li>logout
|
||||
: <a class="el" href="ui__handler_8php.html#a1">ui_handler.php</a></ul>
|
||||
<h3><a class="anchor" name="index_m">- m -</a></h3><ul>
|
||||
<li>move
|
||||
: <a class="el" href="ui__handler_8php.html#a8">ui_handler.php</a></ul>
|
||||
<h3><a class="anchor" name="index_n">- n -</a></h3><ul>
|
||||
<li>newfile
|
||||
: <a class="el" href="ui__browser_8php.html#a2">ui_browser.php</a><li>newFolder
|
||||
: <a class="el" href="ui__handler_8php.html#a6">ui_handler.php</a></ul>
|
||||
<h3><a class="anchor" name="index_p">- p -</a></h3><ul>
|
||||
<li>passwd
|
||||
: <a class="el" href="ui__browser_8php.html#a7">ui_browser.php</a><li>permissions
|
||||
: <a class="el" href="ui__browser_8php.html#a1">ui_browser.php</a></ul>
|
||||
<h3><a class="anchor" name="index_r">- r -</a></h3><ul>
|
||||
<li>removePerm
|
||||
: <a class="el" href="ui__handler_8php.html#a17">ui_handler.php</a><li>removeSubj
|
||||
: <a class="el" href="ui__handler_8php.html#a14">ui_handler.php</a><li>removeSubjFromGr
|
||||
: <a class="el" href="ui__handler_8php.html#a19">ui_handler.php</a><li>rename
|
||||
: <a class="el" href="ui__handler_8php.html#a7">ui_handler.php</a></ul>
|
||||
<h3><a class="anchor" name="index_s">- s -</a></h3><ul>
|
||||
<li>S_htmlspecialchars()
|
||||
: <a class="el" href="SmartyExtensions_8inc_8php.html#a2">SmartyExtensions.inc.php</a><li>S_str_repeat()
|
||||
: <a class="el" href="SmartyExtensions_8inc_8php.html#a0">SmartyExtensions.inc.php</a><li>S_system()
|
||||
: <a class="el" href="SmartyExtensions_8inc_8php.html#a3">SmartyExtensions.inc.php</a><li>S_tra()
|
||||
: <a class="el" href="SmartyExtensions_8inc_8php.html#a4">SmartyExtensions.inc.php</a><li>S_urlencode()
|
||||
: <a class="el" href="SmartyExtensions_8inc_8php.html#a1">SmartyExtensions.inc.php</a><li>search
|
||||
: <a class="el" href="ui__browser_8php.html#a4">ui_browser.php</a><li>sform
|
||||
: <a class="el" href="ui__browser_8php.html#a3">ui_browser.php</a><li>subjects
|
||||
: <a class="el" href="ui__browser_8php.html#a5">ui_browser.php</a><li>systemPrefs
|
||||
: <a class="el" href="ui__handler_8php.html#a20">ui_handler.php</a>, <a class="el" href="ui__browser_8php.html#a13">ui_browser.php</a></ul>
|
||||
<h3><a class="anchor" name="index_u">- u -</a></h3><ul>
|
||||
<li>UI_BROWSER
|
||||
: <a class="el" href="conf_8php.html#a2">conf.php</a><li>UI_FORM_STANDARD_METHOD
|
||||
: <a class="el" href="conf_8php.html#a3">conf.php</a><li>UI_HANDLER
|
||||
: <a class="el" href="conf_8php.html#a1">conf.php</a><li>UI_INPUT_GBOBJECT_MAXFILESIZE
|
||||
: <a class="el" href="conf_8php.html#a6">conf.php</a><li>UI_INPUT_STANDARD_MAXLENGTH
|
||||
: <a class="el" href="conf_8php.html#a5">conf.php</a><li>UI_INPUT_STANDARD_SIZE
|
||||
: <a class="el" href="conf_8php.html#a4">conf.php</a><li>UI_QFORM_ERROR
|
||||
: <a class="el" href="conf_8php.html#a9">conf.php</a><li>UI_QFORM_REQUIRED
|
||||
: <a class="el" href="conf_8php.html#a7">conf.php</a><li>UI_QFORM_REQUIREDNOTE
|
||||
: <a class="el" href="conf_8php.html#a8">conf.php</a><li>upload
|
||||
: <a class="el" href="ui__handler_8php.html#a2">ui_handler.php</a></ul>
|
||||
<hr size="1"><address style="align: right;"><small>Generated on Wed Jan 12 16:22:49 2005 for LiveSupport - htmlUI module by
|
||||
<a href="http://www.doxygen.org/index.html">
|
||||
<img src="doxygen.png" alt="doxygen" align="middle" border="0"></a> 1.4.0 </small></address>
|
||||
</body>
|
||||
</html>
|
|
@ -1,26 +0,0 @@
|
|||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
|
||||
<html><head><meta http-equiv="Content-Type" content="text/html;charset=iso-8859-1">
|
||||
<title>LiveSupport&nbsp;-&nbsp;htmlUI&nbsp;module: File Members - Enumerations</title>
|
||||
<link href="doxygen.css" rel="stylesheet" type="text/css">
|
||||
</head><body>
|
||||
<!-- Generated by Doxygen 1.4.0 -->
|
||||
<div class="qindex"><a class="qindex" href="index.html">Main Page</a> | <a class="qindex" href="hierarchy.html">Class Hierarchy</a> | <a class="qindex" href="classes.html">Alphabetical List</a> | <a class="qindex" href="annotated.html">Class List</a> | <a class="qindex" href="dirs.html">Directories</a> | <a class="qindex" href="files.html">File List</a> | <a class="qindex" href="functions.html">Class Members</a> | <a class="qindexHL" href="globals.html">File Members</a></div>
|
||||
<div class="qindex"><a class="qindex" href="globals.html">All</a> | <a class="qindex" href="globals_func.html">Functions</a> | <a class="qindex" href="globals_vars.html">Variables</a> | <a class="qindexHL" href="globals_enum.html">Enumerations</a></div>
|
||||
|
||||
<p>
|
||||
<ul>
|
||||
<li>UI_BROWSER
|
||||
: <a class="el" href="conf_8php.html#a2">conf.php</a><li>UI_FORM_STANDARD_METHOD
|
||||
: <a class="el" href="conf_8php.html#a3">conf.php</a><li>UI_HANDLER
|
||||
: <a class="el" href="conf_8php.html#a1">conf.php</a><li>UI_INPUT_GBOBJECT_MAXFILESIZE
|
||||
: <a class="el" href="conf_8php.html#a6">conf.php</a><li>UI_INPUT_STANDARD_MAXLENGTH
|
||||
: <a class="el" href="conf_8php.html#a5">conf.php</a><li>UI_INPUT_STANDARD_SIZE
|
||||
: <a class="el" href="conf_8php.html#a4">conf.php</a><li>UI_QFORM_ERROR
|
||||
: <a class="el" href="conf_8php.html#a9">conf.php</a><li>UI_QFORM_REQUIRED
|
||||
: <a class="el" href="conf_8php.html#a7">conf.php</a><li>UI_QFORM_REQUIREDNOTE
|
||||
: <a class="el" href="conf_8php.html#a8">conf.php</a></ul>
|
||||
<hr size="1"><address style="align: right;"><small>Generated on Wed Jan 12 16:22:49 2005 for LiveSupport - htmlUI module by
|
||||
<a href="http://www.doxygen.org/index.html">
|
||||
<img src="doxygen.png" alt="doxygen" align="middle" border="0"></a> 1.4.0 </small></address>
|
||||
</body>
|
||||
</html>
|
|
@ -1,23 +0,0 @@
|
|||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
|
||||
<html><head><meta http-equiv="Content-Type" content="text/html;charset=iso-8859-1">
|
||||
<title>LiveSupport&nbsp;-&nbsp;htmlUI&nbsp;module: File Members - Functions</title>
|
||||
<link href="doxygen.css" rel="stylesheet" type="text/css">
|
||||
</head><body>
|
||||
<!-- Generated by Doxygen 1.4.0 -->
|
||||
<div class="qindex"><a class="qindex" href="index.html">Main Page</a> | <a class="qindex" href="hierarchy.html">Class Hierarchy</a> | <a class="qindex" href="classes.html">Alphabetical List</a> | <a class="qindex" href="annotated.html">Class List</a> | <a class="qindex" href="dirs.html">Directories</a> | <a class="qindex" href="files.html">File List</a> | <a class="qindex" href="functions.html">Class Members</a> | <a class="qindexHL" href="globals.html">File Members</a></div>
|
||||
<div class="qindex"><a class="qindex" href="globals.html">All</a> | <a class="qindexHL" href="globals_func.html">Functions</a> | <a class="qindex" href="globals_vars.html">Variables</a> | <a class="qindex" href="globals_enum.html">Enumerations</a></div>
|
||||
|
||||
<p>
|
||||
<ul>
|
||||
<li>errCallBack()
|
||||
: <a class="el" href="ui__base_8inc_8php.html#a0">ui_base.inc.php</a><li>S_htmlspecialchars()
|
||||
: <a class="el" href="SmartyExtensions_8inc_8php.html#a2">SmartyExtensions.inc.php</a><li>S_str_repeat()
|
||||
: <a class="el" href="SmartyExtensions_8inc_8php.html#a0">SmartyExtensions.inc.php</a><li>S_system()
|
||||
: <a class="el" href="SmartyExtensions_8inc_8php.html#a3">SmartyExtensions.inc.php</a><li>S_tra()
|
||||
: <a class="el" href="SmartyExtensions_8inc_8php.html#a4">SmartyExtensions.inc.php</a><li>S_urlencode()
|
||||
: <a class="el" href="SmartyExtensions_8inc_8php.html#a1">SmartyExtensions.inc.php</a></ul>
|
||||
<hr size="1"><address style="align: right;"><small>Generated on Wed Jan 12 16:22:49 2005 for LiveSupport - htmlUI module by
|
||||
<a href="http://www.doxygen.org/index.html">
|
||||
<img src="doxygen.png" alt="doxygen" align="middle" border="0"></a> 1.4.0 </small></address>
|
||||
</body>
|
||||
</html>
|
|
@ -1,88 +0,0 @@
|
|||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
|
||||
<html><head><meta http-equiv="Content-Type" content="text/html;charset=iso-8859-1">
|
||||
<title>LiveSupport&nbsp;-&nbsp;htmlUI&nbsp;module: File Members - Variables</title>
|
||||
<link href="doxygen.css" rel="stylesheet" type="text/css">
|
||||
</head><body>
|
||||
<!-- Generated by Doxygen 1.4.0 -->
|
||||
<div class="qindex"><a class="qindex" href="index.html">Main Page</a> | <a class="qindex" href="hierarchy.html">Class Hierarchy</a> | <a class="qindex" href="classes.html">Alphabetical List</a> | <a class="qindex" href="annotated.html">Class List</a> | <a class="qindex" href="dirs.html">Directories</a> | <a class="qindex" href="files.html">File List</a> | <a class="qindex" href="functions.html">Class Members</a> | <a class="qindexHL" href="globals.html">File Members</a></div>
|
||||
<div class="qindex"><a class="qindex" href="globals.html">All</a> | <a class="qindex" href="globals_func.html">Functions</a> | <a class="qindexHL" href="globals_vars.html">Variables</a> | <a class="qindex" href="globals_enum.html">Enumerations</a></div>
|
||||
<div class="qindex"><a class="qindex" href="#index_$">$</a> | <a class="qindex" href="#index__">_</a> | <a class="qindex" href="#index_a">a</a> | <a class="qindex" href="#index_b">b</a> | <a class="qindex" href="#index_c">c</a> | <a class="qindex" href="#index_d">d</a> | <a class="qindex" href="#index_e">e</a> | <a class="qindex" href="#index_g">g</a> | <a class="qindex" href="#index_i">i</a> | <a class="qindex" href="#index_l">l</a> | <a class="qindex" href="#index_m">m</a> | <a class="qindex" href="#index_n">n</a> | <a class="qindex" href="#index_p">p</a> | <a class="qindex" href="#index_r">r</a> | <a class="qindex" href="#index_s">s</a> | <a class="qindex" href="#index_u">u</a></div>
|
||||
|
||||
<p>
|
||||
|
||||
<p>
|
||||
<h3><a class="anchor" name="index_$">- $ -</a></h3><ul>
|
||||
<li>$_FILES
|
||||
: <a class="el" href="ui__handler_8php.html#a3">ui_handler.php</a><li>$_REQUEST
|
||||
: <a class="el" href="ui__handler_8php.html#a11">ui_handler.php</a><li>$config
|
||||
: <a class="el" href="conf_8php.html#a0">conf.php</a><li>$Smarty
|
||||
: <a class="el" href="ui__browser__init_8php.html#a0">ui_browser_init.php</a><li>$ui_fmask
|
||||
: <a class="el" href="ui__handler_8php.html#a5">ui_handler.php</a>, <a class="el" href="ui__fmask_8inc_8php.html#a0">ui_fmask.inc.php</a><li>$uiBase
|
||||
: <a class="el" href="ui__browser__init_8php.html#a2">ui_browser_init.php</a><li>$uiBrowser
|
||||
: <a class="el" href="ui__browser__init_8php.html#a1">ui_browser_init.php</a><li>$uiHandler
|
||||
: <a class="el" href="ui__handler__init_8php.html#a0">ui_handler_init.php</a></ul>
|
||||
<h3><a class="anchor" name="index__">- _ -</a></h3><ul>
|
||||
<li>__pad0__
|
||||
: <a class="el" href="ui__handler_8php.html#a21">ui_handler.php</a></ul>
|
||||
<h3><a class="anchor" name="index_a">- a -</a></h3><ul>
|
||||
<li>addGroup
|
||||
: <a class="el" href="ui__handler_8php.html#a13">ui_handler.php</a>, <a class="el" href="ui__browser_8php.html#a6">ui_browser.php</a><li>addPerm
|
||||
: <a class="el" href="ui__handler_8php.html#a16">ui_handler.php</a><li>addSubj2Group
|
||||
: <a class="el" href="ui__handler_8php.html#a18">ui_handler.php</a><li>addUser
|
||||
: <a class="el" href="ui__handler_8php.html#a12">ui_handler.php</a></ul>
|
||||
<h3><a class="anchor" name="index_b">- b -</a></h3><ul>
|
||||
<li>break
|
||||
: <a class="el" href="ui__handler_8php.html#a0">ui_handler.php</a>, <a class="el" href="ui__browser_8php.html#a0">ui_browser.php</a></ul>
|
||||
<h3><a class="anchor" name="index_c">- c -</a></h3><ul>
|
||||
<li>changePasswd
|
||||
: <a class="el" href="ui__handler_8php.html#a15">ui_handler.php</a><li>copy
|
||||
: <a class="el" href="ui__handler_8php.html#a9">ui_handler.php</a></ul>
|
||||
<h3><a class="anchor" name="index_d">- d -</a></h3><ul>
|
||||
<li>delete
|
||||
: <a class="el" href="ui__handler_8php.html#a10">ui_handler.php</a></ul>
|
||||
<h3><a class="anchor" name="index_e">- e -</a></h3><ul>
|
||||
<li>editMetaData
|
||||
: <a class="el" href="ui__browser_8php.html#a12">ui_browser.php</a></ul>
|
||||
<h3><a class="anchor" name="index_g">- g -</a></h3><ul>
|
||||
<li>getFile
|
||||
: <a class="el" href="ui__browser_8php.html#a9">ui_browser.php</a><li>getInfo
|
||||
: <a class="el" href="ui__browser_8php.html#a11">ui_browser.php</a><li>getMdata
|
||||
: <a class="el" href="ui__browser_8php.html#a10">ui_browser.php</a><li>groups
|
||||
: <a class="el" href="ui__browser_8php.html#a8">ui_browser.php</a></ul>
|
||||
<h3><a class="anchor" name="index_i">- i -</a></h3><ul>
|
||||
<li>id
|
||||
: <a class="el" href="ui__handler_8php.html#a4">ui_handler.php</a></ul>
|
||||
<h3><a class="anchor" name="index_l">- l -</a></h3><ul>
|
||||
<li>logout
|
||||
: <a class="el" href="ui__handler_8php.html#a1">ui_handler.php</a></ul>
|
||||
<h3><a class="anchor" name="index_m">- m -</a></h3><ul>
|
||||
<li>move
|
||||
: <a class="el" href="ui__handler_8php.html#a8">ui_handler.php</a></ul>
|
||||
<h3><a class="anchor" name="index_n">- n -</a></h3><ul>
|
||||
<li>newfile
|
||||
: <a class="el" href="ui__browser_8php.html#a2">ui_browser.php</a><li>newFolder
|
||||
: <a class="el" href="ui__handler_8php.html#a6">ui_handler.php</a></ul>
|
||||
<h3><a class="anchor" name="index_p">- p -</a></h3><ul>
|
||||
<li>passwd
|
||||
: <a class="el" href="ui__browser_8php.html#a7">ui_browser.php</a><li>permissions
|
||||
: <a class="el" href="ui__browser_8php.html#a1">ui_browser.php</a></ul>
|
||||
<h3><a class="anchor" name="index_r">- r -</a></h3><ul>
|
||||
<li>removePerm
|
||||
: <a class="el" href="ui__handler_8php.html#a17">ui_handler.php</a><li>removeSubj
|
||||
: <a class="el" href="ui__handler_8php.html#a14">ui_handler.php</a><li>removeSubjFromGr
|
||||
: <a class="el" href="ui__handler_8php.html#a19">ui_handler.php</a><li>rename
|
||||
: <a class="el" href="ui__handler_8php.html#a7">ui_handler.php</a></ul>
|
||||
<h3><a class="anchor" name="index_s">- s -</a></h3><ul>
|
||||
<li>search
|
||||
: <a class="el" href="ui__browser_8php.html#a4">ui_browser.php</a><li>sform
|
||||
: <a class="el" href="ui__browser_8php.html#a3">ui_browser.php</a><li>subjects
|
||||
: <a class="el" href="ui__browser_8php.html#a5">ui_browser.php</a><li>systemPrefs
|
||||
: <a class="el" href="ui__handler_8php.html#a20">ui_handler.php</a>, <a class="el" href="ui__browser_8php.html#a13">ui_browser.php</a></ul>
|
||||
<h3><a class="anchor" name="index_u">- u -</a></h3><ul>
|
||||
<li>upload
|
||||
: <a class="el" href="ui__handler_8php.html#a2">ui_handler.php</a></ul>
|
||||
<hr size="1"><address style="align: right;"><small>Generated on Wed Jan 12 16:22:49 2005 for LiveSupport - htmlUI module by
|
||||
<a href="http://www.doxygen.org/index.html">
|
||||
<img src="doxygen.png" alt="doxygen" align="middle" border="0"></a> 1.4.0 </small></address>
|
||||
</body>
|
||||
</html>
|
|
@ -1,19 +0,0 @@
|
|||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
|
||||
<html><head><meta http-equiv="Content-Type" content="text/html;charset=iso-8859-1">
|
||||
<title>LiveSupport&nbsp;-&nbsp;htmlUI&nbsp;module: Hierarchical Index</title>
|
||||
<link href="doxygen.css" rel="stylesheet" type="text/css">
|
||||
</head><body>
|
||||
<!-- Generated by Doxygen 1.4.0 -->
|
||||
<div class="qindex"><a class="qindex" href="index.html">Main Page</a> | <a class="qindexHL" href="hierarchy.html">Class Hierarchy</a> | <a class="qindex" href="classes.html">Alphabetical List</a> | <a class="qindex" href="annotated.html">Class List</a> | <a class="qindex" href="dirs.html">Directories</a> | <a class="qindex" href="files.html">File List</a> | <a class="qindex" href="functions.html">Class Members</a> | <a class="qindex" href="globals.html">File Members</a></div>
|
||||
<h1>LiveSupport - htmlUI module Class Hierarchy</h1>This inheritance list is sorted roughly, but not completely, alphabetically:<ul>
|
||||
<li><a class="el" href="classuiBase.html">uiBase</a>
|
||||
<ul>
|
||||
<li><a class="el" href="classuiBrowser.html">uiBrowser</a>
|
||||
<li><a class="el" href="classuiHandler.html">uiHandler</a>
|
||||
</ul>
|
||||
</ul>
|
||||
<hr size="1"><address style="align: right;"><small>Generated on Wed Jan 12 16:22:49 2005 for LiveSupport - htmlUI module by
|
||||
<a href="http://www.doxygen.org/index.html">
|
||||
<img src="doxygen.png" alt="doxygen" align="middle" border="0"></a> 1.4.0 </small></address>
|
||||
</body>
|
||||
</html>
|
|
@ -1,18 +0,0 @@
|
|||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
|
||||
<html><head><meta http-equiv="Content-Type" content="text/html;charset=iso-8859-1">
|
||||
<title>LiveSupport&nbsp;-&nbsp;htmlUI&nbsp;module: index.php Source File</title>
|
||||
<link href="doxygen.css" rel="stylesheet" type="text/css">
|
||||
</head><body>
|
||||
<!-- Generated by Doxygen 1.4.0 -->
|
||||
<div class="qindex"><a class="qindex" href="index.html">Main Page</a> | <a class="qindex" href="hierarchy.html">Class Hierarchy</a> | <a class="qindex" href="classes.html">Alphabetical List</a> | <a class="qindex" href="annotated.html">Class List</a> | <a class="qindex" href="dirs.html">Directories</a> | <a class="qindex" href="files.html">File List</a> | <a class="qindex" href="functions.html">Class Members</a> | <a class="qindex" href="globals.html">File Members</a></div>
|
||||
<div class="nav">
|
||||
<a class="el" href="dir_000000.html">var</a> / <a class="el" href="dir_000001.html">html</a></div>
|
||||
<h1>html/index.php</h1><a href="html_2index_8php.html">Go to the documentation of this file.</a><div class="fragment"><pre class="fragment">00001 <?php
|
||||
00002 require_once dirname(__FILE__).'/../conf.php';
|
||||
00003 header('LOCATION: '.HTMLUI_BROWSER);
|
||||
00004 ?>
|
||||
</pre></div><hr size="1"><address style="align: right;"><small>Generated on Wed Jan 12 16:22:49 2005 for LiveSupport - htmlUI module by
|
||||
<a href="http://www.doxygen.org/index.html">
|
||||
<img src="doxygen.png" alt="doxygen" align="middle" border="0"></a> 1.4.0 </small></address>
|
||||
</body>
|
||||
</html>
|
|
@ -1,19 +0,0 @@
|
|||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
|
||||
<html><head><meta http-equiv="Content-Type" content="text/html;charset=iso-8859-1">
|
||||
<title>LiveSupport&nbsp;-&nbsp;htmlUI&nbsp;module: index.php File Reference</title>
|
||||
<link href="doxygen.css" rel="stylesheet" type="text/css">
|
||||
</head><body>
|
||||
<!-- Generated by Doxygen 1.4.0 -->
|
||||
<div class="qindex"><a class="qindex" href="index.html">Main Page</a> | <a class="qindex" href="hierarchy.html">Class Hierarchy</a> | <a class="qindex" href="classes.html">Alphabetical List</a> | <a class="qindex" href="annotated.html">Class List</a> | <a class="qindex" href="dirs.html">Directories</a> | <a class="qindex" href="files.html">File List</a> | <a class="qindex" href="functions.html">Class Members</a> | <a class="qindex" href="globals.html">File Members</a></div>
|
||||
<div class="nav">
|
||||
<a class="el" href="dir_000000.html">var</a> / <a class="el" href="dir_000001.html">html</a></div>
|
||||
<h1>html/index.php File Reference</h1>
|
||||
<p>
|
||||
<a href="html_2index_8php-source.html">Go to the source code of this file.</a><table border="0" cellpadding="0" cellspacing="0">
|
||||
<tr><td></td></tr>
|
||||
</table>
|
||||
<hr size="1"><address style="align: right;"><small>Generated on Wed Jan 12 16:22:49 2005 for LiveSupport - htmlUI module by
|
||||
<a href="http://www.doxygen.org/index.html">
|
||||
<img src="doxygen.png" alt="doxygen" align="middle" border="0"></a> 1.4.0 </small></address>
|
||||
</body>
|
||||
</html>
|
|
@ -1,14 +0,0 @@
|
|||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
|
||||
<html><head><meta http-equiv="Content-Type" content="text/html;charset=iso-8859-1">
|
||||
<title>LiveSupport&nbsp;-&nbsp;htmlUI&nbsp;module: Main Page</title>
|
||||
<link href="doxygen.css" rel="stylesheet" type="text/css">
|
||||
</head><body>
|
||||
<!-- Generated by Doxygen 1.4.0 -->
|
||||
<div class="qindex"><a class="qindexHL" href="index.html">Main Page</a> | <a class="qindex" href="hierarchy.html">Class Hierarchy</a> | <a class="qindex" href="classes.html">Alphabetical List</a> | <a class="qindex" href="annotated.html">Class List</a> | <a class="qindex" href="dirs.html">Directories</a> | <a class="qindex" href="files.html">File List</a> | <a class="qindex" href="functions.html">Class Members</a> | <a class="qindex" href="globals.html">File Members</a></div>
|
||||
<h1>LiveSupport - htmlUI module Documentation</h1>
|
||||
<p>
|
||||
<h3 align="center">1.0 </h3><hr size="1"><address style="align: right;"><small>Generated on Wed Jan 12 16:22:49 2005 for LiveSupport - htmlUI module by
|
||||
<a href="http://www.doxygen.org/index.html">
|
||||
<img src="doxygen.png" alt="doxygen" align="middle" border="0"></a> 1.4.0 </small></address>
|
||||
</body>
|
||||
</html>
|
|
@ -1,18 +0,0 @@
|
|||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
|
||||
<html><head><meta http-equiv="Content-Type" content="text/html;charset=iso-8859-1">
|
||||
<title>LiveSupport&nbsp;-&nbsp;htmlUI&nbsp;module: index.php Source File</title>
|
||||
<link href="doxygen.css" rel="stylesheet" type="text/css">
|
||||
</head><body>
|
||||
<!-- Generated by Doxygen 1.4.0 -->
|
||||
<div class="qindex"><a class="qindex" href="index.html">Main Page</a> | <a class="qindex" href="hierarchy.html">Class Hierarchy</a> | <a class="qindex" href="classes.html">Alphabetical List</a> | <a class="qindex" href="annotated.html">Class List</a> | <a class="qindex" href="dirs.html">Directories</a> | <a class="qindex" href="files.html">File List</a> | <a class="qindex" href="functions.html">Class Members</a> | <a class="qindex" href="globals.html">File Members</a></div>
|
||||
<div class="nav">
|
||||
<a class="el" href="dir_000000.html">var</a></div>
|
||||
<h1>index.php</h1><a href="index_8php.html">Go to the documentation of this file.</a><div class="fragment"><pre class="fragment">00001 <?php
|
||||
00002 require_once dirname(__FILE__).'/conf.php';
|
||||
00003 header('LOCATION: '.UI_BROWSER);
|
||||
00004 ?>
|
||||
</pre></div><hr size="1"><address style="align: right;"><small>Generated on Wed Jan 12 16:22:49 2005 for LiveSupport - htmlUI module by
|
||||
<a href="http://www.doxygen.org/index.html">
|
||||
<img src="doxygen.png" alt="doxygen" align="middle" border="0"></a> 1.4.0 </small></address>
|
||||
</body>
|
||||
</html>
|
|
@ -1,19 +0,0 @@
|
|||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
|
||||
<html><head><meta http-equiv="Content-Type" content="text/html;charset=iso-8859-1">
|
||||
<title>LiveSupport&nbsp;-&nbsp;htmlUI&nbsp;module: index.php File Reference</title>
|
||||
<link href="doxygen.css" rel="stylesheet" type="text/css">
|
||||
</head><body>
|
||||
<!-- Generated by Doxygen 1.4.0 -->
|
||||
<div class="qindex"><a class="qindex" href="index.html">Main Page</a> | <a class="qindex" href="hierarchy.html">Class Hierarchy</a> | <a class="qindex" href="classes.html">Alphabetical List</a> | <a class="qindex" href="annotated.html">Class List</a> | <a class="qindex" href="dirs.html">Directories</a> | <a class="qindex" href="files.html">File List</a> | <a class="qindex" href="functions.html">Class Members</a> | <a class="qindex" href="globals.html">File Members</a></div>
|
||||
<div class="nav">
|
||||
<a class="el" href="dir_000000.html">var</a></div>
|
||||
<h1>index.php File Reference</h1>
|
||||
<p>
|
||||
<a href="index_8php-source.html">Go to the source code of this file.</a><table border="0" cellpadding="0" cellspacing="0">
|
||||
<tr><td></td></tr>
|
||||
</table>
|
||||
<hr size="1"><address style="align: right;"><small>Generated on Wed Jan 12 16:22:49 2005 for LiveSupport - htmlUI module by
|
||||
<a href="http://www.doxygen.org/index.html">
|
||||
<img src="doxygen.png" alt="doxygen" align="middle" border="0"></a> 1.4.0 </small></address>
|
||||
</body>
|
||||
</html>
|
|
@ -1,92 +0,0 @@
|
|||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
|
||||
<html><head><meta http-equiv="Content-Type" content="text/html;charset=iso-8859-1">
|
||||
<title>LiveSupport&nbsp;-&nbsp;htmlUI&nbsp;module: ui_base.inc.php Source File</title>
|
||||
<link href="doxygen.css" rel="stylesheet" type="text/css">
|
||||
</head><body>
|
||||
<!-- Generated by Doxygen 1.4.0 -->
|
||||
<div class="qindex"><a class="qindex" href="index.html">Main Page</a> | <a class="qindex" href="hierarchy.html">Class Hierarchy</a> | <a class="qindex" href="classes.html">Alphabetical List</a> | <a class="qindex" href="annotated.html">Class List</a> | <a class="qindex" href="dirs.html">Directories</a> | <a class="qindex" href="files.html">File List</a> | <a class="qindex" href="functions.html">Class Members</a> | <a class="qindex" href="globals.html">File Members</a></div>
|
||||
<div class="nav">
|
||||
<a class="el" href="dir_000000.html">var</a></div>
|
||||
<h1>ui_base.inc.php</h1><a href="ui__base_8inc_8php.html">Go to the documentation of this file.</a><div class="fragment"><pre class="fragment">00001 <?php
|
||||
<a name="l00002"></a><a class="code" href="ui__base_8inc_8php.html#a0">00002</a> function <a class="code" href="ui__base_8inc_8php.html#a0">errCallBack</a>($err)
|
||||
00003 {
|
||||
00004 echo <span class="stringliteral">"<pre>gm:\n"</span>.$err->getMessage().<span class="stringliteral">"\ndi:\n"</span>.$err->getDebugInfo().<span class="stringliteral">"\nui:\n"</span>.$err->getUserInfo().<span class="stringliteral">"\n"</span>;
|
||||
00005 echo <span class="stringliteral">"<hr>BackTrace:\n"</span>;
|
||||
00006 print_r($err->backtrace);
|
||||
00007 echo <span class="stringliteral">"</pre>\n"</span>;
|
||||
00008 exit;
|
||||
00009 }
|
||||
00010
|
||||
<a name="l00017"></a><a class="code" href="classuiBase.html">00017</a> <span class="keyword">class </span><a class="code" href="classuiBase.html">uiBase</a>
|
||||
00018 {
|
||||
00019 <span class="comment">// --- basic funtionality ---</span>
|
||||
<a name="l00028"></a><a class="code" href="classuiBase.html#a0">00028</a> <span class="comment"></span> function <a class="code" href="classuiBase.html#a0">tra</a>($input)
|
||||
00029 {
|
||||
00030 <span class="comment">// just a dummy function yet</span>
|
||||
00031
|
||||
00032 <span class="keywordflow">return</span> $input;
|
||||
00033 }
|
||||
00034
|
||||
00035
|
||||
<a name="l00045"></a><a class="code" href="classuiBase.html#a1">00045</a> function <a class="code" href="classuiBase.html#a1">_parseArr2Form</a>(&$form, &$mask, $side='client')
|
||||
00046 {
|
||||
00047 foreach($mask as $k=>$v) {
|
||||
00048 <span class="preprocessor"> ## add elements ########################</span>
|
||||
00049 <span class="preprocessor"></span> <span class="keywordflow">if</span> ($v['type']=='radio') {
|
||||
00050 foreach($v['options'] as $rk=>$rv) {
|
||||
00051 $radio[] =& $form->createElement($v['type'], NULL, NULL, $rv, $rk);
|
||||
00052 }
|
||||
00053 $form->addGroup($radio, $v['element'], $this->tra($v['label']));
|
||||
00054 unset($radio);
|
||||
00055
|
||||
00056 } elseif (isset($v['type'])) {
|
||||
00057 $elem[$v['element']] =& $form->createElement($v['type'], $v['element'], $this->tra($v['label']), ($v['attributes']?$v['attributes']:(($v[type]=='text'||$v['type']=='file')?array('size'=><a class="code" href="conf_8php.html#a4">UI_INPUT_STANDARD_SIZE</a>, 'maxlength'=><a class="code" href="conf_8php.html#a5">UI_INPUT_STANDARD_MAXLENGTH</a>):NULL)));
|
||||
00058 <span class="keywordflow">if</span>($v['type']=='select') {
|
||||
00059 $elem[$v['element']]->loadArray($v['options']);
|
||||
00060 $elem[$v['element']]->setMultiple($v['multiple']);
|
||||
00061 };
|
||||
00062 <span class="keywordflow">if</span> (!$v['groupit']) $form->addElement($elem[$v['element']]);
|
||||
00063 }
|
||||
00064 <span class="preprocessor"> ## add required rule ###################</span>
|
||||
00065 <span class="preprocessor"></span> <span class="keywordflow">if</span> ($v['required']) {
|
||||
00066 $form->addRule($v['element'], ($v['errormsg']?$this->tra($v['errormsg']):$this-><a class="code" href="classuiBase.html#a0">tra</a>('please enter value <span class="keywordflow">for</span>').<span class="charliteral">' '</span>.$this-><a class="code" href="classuiBase.html#a0">tra</a>($v['label'])), 'required', NULL, $side);
|
||||
00067 }
|
||||
00068 <span class="preprocessor"> ## add constant value ##################</span>
|
||||
00069 <span class="preprocessor"></span> <span class="keywordflow">if</span> (isset($v['constant'])) {
|
||||
00070 $form->setConstants(array($v['element']=>$v['constant']));
|
||||
00071 }
|
||||
00072 <span class="preprocessor"> ## add default value ###################</span>
|
||||
00073 <span class="preprocessor"></span> <span class="keywordflow">if</span> (isset($v['<span class="keywordflow">default</span>'])) {
|
||||
00074 $form->setDefaults(array($v['element']=>$v['<span class="keywordflow">default</span>']));
|
||||
00075 }
|
||||
00076 <span class="preprocessor"> ## add other rules #####################</span>
|
||||
00077 <span class="preprocessor"></span> <span class="keywordflow">if</span> ($v['rule']) {
|
||||
00078 $form->addRule($v['element'], $this->tra($v['errormsg']), $v['rule'] , NULL, $side);
|
||||
00079 }
|
||||
00080 <span class="preprocessor"> ## add group ###########################</span>
|
||||
00081 <span class="preprocessor"></span> <span class="keywordflow">if</span> (is_array($v['group'])) {
|
||||
00082 foreach($v['group'] as $val) {
|
||||
00083 $groupthose[] =& $elem[$val];
|
||||
00084 }
|
||||
00085 $form->addGroup($groupthose, $v['name'], $this->tra($v['label']), $v['seperator'], $v['appendName']);
|
||||
00086 unset($groupthose);
|
||||
00087 }
|
||||
00088 <span class="preprocessor"> ## check error on type file ##########</span>
|
||||
00089 <span class="preprocessor"></span> <span class="keywordflow">if</span> ($v['type']=='file') {
|
||||
00090 <span class="keywordflow">if</span> ($_POST[$v['element']]['error']) {
|
||||
00091 $form->setElementError($v['element'], ($v['errormsg']?$this->tra($v['errormsg']):$this-><a class="code" href="classuiBase.html#a0">tra</a>('please enter value <span class="keywordflow">for</span>').<span class="charliteral">' '</span>.$this-><a class="code" href="classuiBase.html#a0">tra</a>($v['label'])));
|
||||
00092 }
|
||||
00093 }
|
||||
00094 }
|
||||
00095
|
||||
00096 reset($mask);
|
||||
00097
|
||||
00098 $form->validate();
|
||||
00099 }
|
||||
00100 }
|
||||
00101 ?>
|
||||
</pre></div><hr size="1"><address style="align: right;"><small>Generated on Wed Jan 12 16:22:49 2005 for LiveSupport - htmlUI module by
|
||||
<a href="http://www.doxygen.org/index.html">
|
||||
<img src="doxygen.png" alt="doxygen" align="middle" border="0"></a> 1.4.0 </small></address>
|
||||
</body>
|
||||
</html>
|
|
@ -1,53 +0,0 @@
|
|||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
|
||||
<html><head><meta http-equiv="Content-Type" content="text/html;charset=iso-8859-1">
|
||||
<title>LiveSupport&nbsp;-&nbsp;htmlUI&nbsp;module: ui_base.inc.php File Reference</title>
|
||||
<link href="doxygen.css" rel="stylesheet" type="text/css">
|
||||
</head><body>
|
||||
<!-- Generated by Doxygen 1.4.0 -->
|
||||
<div class="qindex"><a class="qindex" href="index.html">Main Page</a> | <a class="qindex" href="hierarchy.html">Class Hierarchy</a> | <a class="qindex" href="classes.html">Alphabetical List</a> | <a class="qindex" href="annotated.html">Class List</a> | <a class="qindex" href="dirs.html">Directories</a> | <a class="qindex" href="files.html">File List</a> | <a class="qindex" href="functions.html">Class Members</a> | <a class="qindex" href="globals.html">File Members</a></div>
|
||||
<div class="nav">
|
||||
<a class="el" href="dir_000000.html">var</a></div>
|
||||
<h1>ui_base.inc.php File Reference</h1>
|
||||
<p>
|
||||
<a href="ui__base_8inc_8php-source.html">Go to the source code of this file.</a><table border="0" cellpadding="0" cellspacing="0">
|
||||
<tr><td></td></tr>
|
||||
<tr><td colspan="2"><br><h2>Functions</h2></td></tr>
|
||||
<tr><td class="memItemLeft" nowrap align="right" valign="top"> </td><td class="memItemRight" valign="bottom"><a class="el" href="ui__base_8inc_8php.html#a0">errCallBack</a> ($err)</td></tr>
|
||||
|
||||
</table>
|
||||
<hr><h2>Function Documentation</h2>
|
||||
<a class="anchor" name="a0" doxytag="ui_base.inc.php::errCallBack"></a><p>
|
||||
<table class="mdTable" cellpadding="2" cellspacing="0">
|
||||
<tr>
|
||||
<td class="mdRow">
|
||||
<table cellpadding="0" cellspacing="0" border="0">
|
||||
<tr>
|
||||
<td class="md" nowrap valign="top">errCallBack </td>
|
||||
<td class="md" valign="top">( </td>
|
||||
<td class="md" nowrap valign="top">$ </td>
|
||||
<td class="mdname1" valign="top" nowrap> <em>err</em> </td>
|
||||
<td class="md" valign="top"> ) </td>
|
||||
<td class="md" nowrap></td>
|
||||
</tr>
|
||||
</table>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
<table cellspacing="5" cellpadding="0" border="0">
|
||||
<tr>
|
||||
<td>
|
||||
|
||||
</td>
|
||||
<td>
|
||||
|
||||
<p>
|
||||
|
||||
<p>
|
||||
Definition at line <a class="el" href="ui__base_8inc_8php-source.html#l00002">2</a> of file <a class="el" href="ui__base_8inc_8php-source.html">ui_base.inc.php</a>. </td>
|
||||
</tr>
|
||||
</table>
|
||||
<hr size="1"><address style="align: right;"><small>Generated on Wed Jan 12 16:22:49 2005 for LiveSupport - htmlUI module by
|
||||
<a href="http://www.doxygen.org/index.html">
|
||||
<img src="doxygen.png" alt="doxygen" align="middle" border="0"></a> 1.4.0 </small></address>
|
||||
</body>
|
||||
</html>
|
|
@ -1,288 +0,0 @@
|
|||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
|
||||
<html><head><meta http-equiv="Content-Type" content="text/html;charset=iso-8859-1">
|
||||
<title>LiveSupport&nbsp;-&nbsp;htmlUI&nbsp;module: ui_browser.class.php Source File</title>
|
||||
<link href="doxygen.css" rel="stylesheet" type="text/css">
|
||||
</head><body>
|
||||
<!-- Generated by Doxygen 1.4.0 -->
|
||||
<div class="qindex"><a class="qindex" href="index.html">Main Page</a> | <a class="qindex" href="hierarchy.html">Class Hierarchy</a> | <a class="qindex" href="classes.html">Alphabetical List</a> | <a class="qindex" href="annotated.html">Class List</a> | <a class="qindex" href="dirs.html">Directories</a> | <a class="qindex" href="files.html">File List</a> | <a class="qindex" href="functions.html">Class Members</a> | <a class="qindex" href="globals.html">File Members</a></div>
|
||||
<div class="nav">
|
||||
<a class="el" href="dir_000000.html">var</a></div>
|
||||
<h1>ui_browser.class.php</h1><a href="ui__browser_8class_8php.html">Go to the documentation of this file.</a><div class="fragment"><pre class="fragment">00001 <?php
|
||||
<a name="l00002"></a><a class="code" href="classuiBrowser.html">00002</a> <span class="keyword">class </span><a class="code" href="classuiBrowser.html">uiBrowser</a> <span class="keyword">extends</span> <a class="code" href="classuiBase.html">uiBase</a> {
|
||||
<a name="l00003"></a><a class="code" href="classuiBrowser.html#o0">00003</a> var <a class="code" href="classuiBrowser.html#o0">$alertMsg</a>;
|
||||
00004
|
||||
00005 <span class="comment">// --- class constructor ---</span>
|
||||
<a name="l00015"></a><a class="code" href="classuiBrowser.html#a0">00015</a> <span class="comment"></span> function <a class="code" href="classuiBrowser.html#a0">uiBrowser</a>($config)
|
||||
00016 {
|
||||
00017 $dbc = DB::connect($config['dsn'], TRUE);
|
||||
00018 $dbc->setFetchMode(DB_FETCHMODE_ASSOC);
|
||||
00019 $this->gb = &<span class="keyword">new</span> GreenBox(&$dbc, $config);
|
||||
00020 $this-><span class="keywordtype">id</span> = (!<a class="code" href="ui__handler_8php.html#a11">$_REQUEST</a>['<span class="keywordtype">id</span>'] ? $this->gb->storId : <a class="code" href="ui__handler_8php.html#a11">$_REQUEST</a>['<span class="keywordtype">id</span>']);
|
||||
00021 $this->sessid = <a class="code" href="ui__handler_8php.html#a11">$_REQUEST</a>[<a class="code" href="conf_8php.html#a0">$config</a>['authCookieName']];
|
||||
00022 $this->userid = $this->gb->getSessUserId($this->sessid);
|
||||
00023 $this->login = $this->gb->getSessLogin($this->sessid);
|
||||
00024 $this->InputTextStandardAttrib = array('size' =><a class="code" href="conf_8php.html#a4">UI_INPUT_STANDARD_SIZE</a>,
|
||||
00025 'maxlength'=><a class="code" href="conf_8php.html#a5">UI_INPUT_STANDARD_MAXLENGTH</a>);
|
||||
00026
|
||||
00027 }
|
||||
00028
|
||||
00029 <span class="comment">// --- error handling ---</span>
|
||||
<a name="l00038"></a><a class="code" href="classuiBrowser.html#a1">00038</a> <span class="comment"></span> function <a class="code" href="classuiBrowser.html#a1">alertMsg</a>()
|
||||
00039 {
|
||||
00040 <span class="keywordflow">if</span> ($_SESSION['<a class="code" href="classuiBrowser.html#a1">alertMsg</a>']) {
|
||||
00041 $this->alertMsg = $_SESSION['alertMsg'];
|
||||
00042 unset($_SESSION['alertMsg']);
|
||||
00043 <span class="keywordflow">return</span> $this->alertMsg;
|
||||
00044 }
|
||||
00045 <span class="keywordflow">return</span> <span class="keyword">false</span>;
|
||||
00046 }
|
||||
00047
|
||||
00048 <span class="comment">// --- template feed ---</span>
|
||||
<a name="l00057"></a><a class="code" href="classuiBrowser.html#a2">00057</a> <span class="comment"></span> function <a class="code" href="classuiBrowser.html#a2">loginform</a>(&$Smarty, &$mask)
|
||||
00058 {
|
||||
00059 $form = <span class="keyword">new</span> HTML_QuickForm('loginbox', UI_STANDARD_FORM_METHOD, <a class="code" href="conf_8php.html#a1">UI_HANDLER</a>);
|
||||
00060 $form->setRequiredNote(file_get_contents(<a class="code" href="conf_8php.html#a8">UI_QFORM_REQUIREDNOTE</a>));
|
||||
00061 $this-><a class="code" href="classuiBase.html#a1">_parseArr2Form</a>($form, $mask);
|
||||
00062
|
||||
00063 <span class="preprocessor"> ## using Static Smarty Renderer</span>
|
||||
00064 <span class="preprocessor"></span> $renderer =& <span class="keyword">new</span> HTML_QuickForm_Renderer_ArraySmarty($Smarty, <span class="keyword">true</span>);
|
||||
00065 $renderer->setRequiredTemplate(file_get_contents(<a class="code" href="conf_8php.html#a7">UI_QFORM_REQUIRED</a>));
|
||||
00066 $renderer->setErrorTemplate(file_get_contents(<a class="code" href="conf_8php.html#a9">UI_QFORM_ERROR</a>));
|
||||
00067
|
||||
00068 $form->accept($renderer);
|
||||
00069
|
||||
00070 <span class="keywordflow">return</span> $renderer->toArray();
|
||||
00071 }
|
||||
00072
|
||||
00073
|
||||
00074
|
||||
00075
|
||||
<a name="l00083"></a><a class="code" href="classuiBrowser.html#a3">00083</a> function <a class="code" href="classuiBrowser.html#a3">getUserInfo</a>()
|
||||
00084 {
|
||||
00085 <span class="keywordflow">return</span> array('uname'=>$this->gb->getSessLogin($this->sessid),
|
||||
00086 'uid' =>$this->gb->getSessUserId($this->sessid));
|
||||
00087 }
|
||||
00088
|
||||
<a name="l00099"></a><a class="code" href="classuiBrowser.html#a4">00099</a> function <a class="code" href="classuiBrowser.html#a4">getStructure</a>($<span class="keywordtype">id</span>, $homedir=FALSE)
|
||||
00100 {
|
||||
00101 <span class="keywordflow">if</span> ($homedir) {
|
||||
00102 $id = $this->gb->getObjId($this->login, $this->gb->storId);
|
||||
00103 $data['<span class="keywordtype">id</span>'] = $id;
|
||||
00104 } <span class="keywordflow">else</span> {
|
||||
00105 $data['<span class="keywordtype">id</span>'] = $id;
|
||||
00106 }
|
||||
00107
|
||||
00108 $data=array_merge($data, array(
|
||||
00109 'pathdata' => $this->gb->getPath($<span class="keywordtype">id</span>, $this->sessid),
|
||||
00110 'listdata' => ($this->gb->getObjType($<span class="keywordtype">id</span>)=='Folder'?
|
||||
00111 $this->gb->listFolder($<span class="keywordtype">id</span>, $this->sessid):array()
|
||||
00112 ),
|
||||
00113 'tree' => (<a class="code" href="ui__handler_8php.html#a11">$_REQUEST</a>['tree']==<span class="charliteral">'Y'</span>),
|
||||
00114 'showPath' => <span class="keyword">true</span>,
|
||||
00115 'showTree' => <span class="keyword">true</span>,
|
||||
00116 ));
|
||||
00117 <span class="keywordflow">if</span>(<a class="code" href="ui__handler_8php.html#a11">$_REQUEST</a>['tree']==<span class="charliteral">'Y'</span>){
|
||||
00118 $data['treedata'] = $this->gb->getSubTree($<span class="keywordtype">id</span>, $this->sessid);
|
||||
00119 }
|
||||
00120
|
||||
00121 <span class="keywordflow">if</span>(PEAR::isError($data['listdata'])){
|
||||
00122 $data['msg'] = $data['listdata']->getMessage();
|
||||
00123 $data['listdata'] = array();
|
||||
00124 }
|
||||
00125
|
||||
00126 <span class="keywordflow">return</span> $data;
|
||||
00127 }
|
||||
00128
|
||||
00129
|
||||
<a name="l00139"></a><a class="code" href="classuiBrowser.html#a5">00139</a> function <a class="code" href="classuiBrowser.html#a5">getNewFileForm</a>($<span class="keywordtype">id</span>, $mask)
|
||||
00140 {
|
||||
00141 $form = <span class="keyword">new</span> HTML_QuickForm('<a class="code" href="ui__browser_8php.html#a2">newfile</a>', UI_STANDARD_FORM_METHOD, <a class="code" href="conf_8php.html#a1">UI_HANDLER</a>);
|
||||
00142 $form->setConstants(array('<span class="keywordtype">id</span>'=>$<span class="keywordtype">id</span>));
|
||||
00143 $form->addElement('hidden', '<span class="keywordtype">id</span>');
|
||||
00144
|
||||
00145 $this-><a class="code" href="classuiBase.html#a1">_parseArr2Form</a>($form, $mask);
|
||||
00146
|
||||
00147 <span class="keywordflow">return</span> $form->toHTML();
|
||||
00148 }
|
||||
00149
|
||||
00150
|
||||
<a name="l00160"></a><a class="code" href="classuiBrowser.html#a6">00160</a> function <a class="code" href="classuiBrowser.html#a6">getSearchForm</a>($<span class="keywordtype">id</span>, &$mask)
|
||||
00161 {
|
||||
00162 $form = <span class="keyword">new</span> HTML_QuickForm('<a class="code" href="ui__browser_8php.html#a4">search</a>', UI_STANDARD_FORM_METHOD, <a class="code" href="conf_8php.html#a2">UI_BROWSER</a>);
|
||||
00163 $form->setConstants(array('<span class="keywordtype">id</span>'=>$<span class="keywordtype">id</span>));
|
||||
00164 $form->addElement('hidden', '<span class="keywordtype">id</span>');
|
||||
00165
|
||||
00166 $this-><a class="code" href="classuiBase.html#a1">_parseArr2Form</a>($form, $mask);
|
||||
00167
|
||||
00168 <span class="keywordflow">return</span> $form->toHTML();
|
||||
00169 }
|
||||
00170
|
||||
<a name="l00178"></a><a class="code" href="classuiBrowser.html#a7">00178</a> function <a class="code" href="classuiBrowser.html#a7">getSubjects</a>()
|
||||
00179 {
|
||||
00180 <span class="keywordflow">return</span> array('subj' => $this->gb->getSubjectsWCnt(),
|
||||
00181 'loggedAs' => $this->login
|
||||
00182 );
|
||||
00183 }
|
||||
00184
|
||||
00185
|
||||
<a name="l00193"></a><a class="code" href="classuiBrowser.html#a8">00193</a> function <a class="code" href="classuiBrowser.html#a8">getAddSubjectForm</a>($mask)
|
||||
00194 {
|
||||
00195 $form = <span class="keyword">new</span> HTML_QuickForm('addSubject', UI_STANDARD_FORM_METHOD, <a class="code" href="conf_8php.html#a1">UI_HANDLER</a>);
|
||||
00196 <span class="preprocessor"> #$form->setConstants(array('act'=>'addSubj'));</span>
|
||||
00197 <span class="preprocessor"></span><span class="preprocessor"> #$form->addElement('hidden', 'act');</span>
|
||||
00198 <span class="preprocessor"></span><span class="preprocessor"> #$form->addElement('text', 'login', $this->tra('Add Subject with Name'), $this->InputTextStandardAttrib);</span>
|
||||
00199 <span class="preprocessor"></span><span class="preprocessor"> #$form->addElement('password', 'pass', $this->tra('and Password'), $this->InputTextStandardAttrib);</span>
|
||||
00200 <span class="preprocessor"></span><span class="preprocessor"> #$form->addElement('submit', NULL, $this->tra('Add'));</span>
|
||||
00201 <span class="preprocessor"></span><span class="preprocessor"> #$form->addRule('login', $this->tra('enter a Subject Name'), 'required', null, 'client');</span>
|
||||
00202 <span class="preprocessor"></span><span class="preprocessor"> #$form->addRule('pass', $this->tra('enter a Password'), 'required', null, 'client');</span>
|
||||
00203 <span class="preprocessor"></span> $this-><a class="code" href="classuiBase.html#a1">_parseArr2Form</a>($form, $mask);
|
||||
00204 <span class="keywordflow">return</span> $form->toHTML();
|
||||
00205 }
|
||||
00206
|
||||
<a name="l00214"></a><a class="code" href="classuiBrowser.html#a9">00214</a> function <a class="code" href="classuiBrowser.html#a9">getChangePasswdForm</a>($uid)
|
||||
00215 {
|
||||
00216 $form = <span class="keyword">new</span> HTML_QuickForm('<a class="code" href="ui__handler_8php.html#a15">changePasswd</a>', UI_STANDARD_FORM_METHOD, <a class="code" href="conf_8php.html#a1">UI_HANDLER</a>);
|
||||
00217 $form->setConstants(array('act'=>'<a class="code" href="ui__handler_8php.html#a15">changePasswd</a>',
|
||||
00218 'uid'=>$uid));
|
||||
00219 $form->addElement('hidden', 'act');
|
||||
00220 $form->addElement('hidden', 'uid');
|
||||
00221 $form->addElement('text', 'oldpass', $this->tra('Old Password'), $this->InputTextStandardAttrib);
|
||||
00222 $form->addElement('text', 'pass', $this->tra('<span class="keyword">new</span> Password'), $this->InputTextStandardAttrib);
|
||||
00223 $form->addElement('text', 'pass2', $this->tra('retype <span class="keyword">new</span> Password'), $this->InputTextStandardAttrib);
|
||||
00224 $form->addElement('submit', NULL, $this->tra('Change'));
|
||||
00225 $form->addRule('oldpass', $this->tra('enter Old Password'), 'required', null, 'client');
|
||||
00226 $form->addRule('pass', $this->tra('enter <span class="keyword">new</span> Password'), 'required', null, 'client');
|
||||
00227 $form->addRule('pass2', $this->tra('retype <span class="keyword">new</span> Password'), 'required', null, 'client');
|
||||
00228 $form->addRule(array('pass', 'pass2'), 'The passwords <span class="keywordflow">do</span> not match', 'compare', null, 'client');
|
||||
00229
|
||||
00230 <span class="keywordflow">return</span> $form->toHTML();
|
||||
00231 }
|
||||
00232
|
||||
<a name="l00241"></a><a class="code" href="classuiBrowser.html#a10">00241</a> function <a class="code" href="classuiBrowser.html#a10">getGroups</a>($<span class="keywordtype">id</span>)
|
||||
00242 {
|
||||
00243 <span class="keywordflow">return</span> array(
|
||||
00244 'rows' => $this->gb->listGroup($<span class="keywordtype">id</span>),
|
||||
00245 '<span class="keywordtype">id</span>' => $id,
|
||||
00246 'loggedAs' => $this->login,
|
||||
00247 'gname' => $this->gb->getSubjName($<span class="keywordtype">id</span>),
|
||||
00248 'subj' => $this->gb->getSubjects()
|
||||
00249 );
|
||||
00250 }
|
||||
00251
|
||||
00252
|
||||
<a name="l00262"></a><a class="code" href="classuiBrowser.html#a11">00262</a> function <a class="code" href="classuiBrowser.html#a11">getSubj2GroupForm</a>($<span class="keywordtype">id</span>)
|
||||
00263 {
|
||||
00264 $g = $this-><a class="code" href="classuiBrowser.html#a10">getGroups</a>($<span class="keywordtype">id</span>);
|
||||
00265 foreach($g['subj'] as $s) {
|
||||
00266 $this->logins[($s['login'])]=$s['login'];
|
||||
00267 }
|
||||
00268
|
||||
00269 $form = <span class="keyword">new</span> HTML_QuickForm('<a class="code" href="ui__handler_8php.html#a18">addSubj2Group</a>', UI_STANDARD_FORM_METHOD, <a class="code" href="conf_8php.html#a1">UI_HANDLER</a>);
|
||||
00270 $form->setConstants(array('act'=>'<a class="code" href="ui__handler_8php.html#a18">addSubj2Group</a>',
|
||||
00271 'reid'=>$g['<span class="keywordtype">id</span>'],
|
||||
00272 'gname'=>$g['gname']));
|
||||
00273 $form->addElement('hidden', 'act');
|
||||
00274 $form->addElement('hidden', 'reid');
|
||||
00275 $form->addElement('hidden', 'gname');
|
||||
00276 $s =& $form->createElement('select', 'login', 'Add Group: ');
|
||||
00277 $s->loadArray($this->logins, NULL);
|
||||
00278 $form->addElement($s);
|
||||
00279 $form->addElement('submit', NULL, $this->tra('Do'));
|
||||
00280
|
||||
00281 <span class="keywordflow">return</span> $form->toHTML();
|
||||
00282 }
|
||||
00283
|
||||
<a name="l00293"></a><a class="code" href="classuiBrowser.html#a12">00293</a> function <a class="code" href="classuiBrowser.html#a12">getPermissions</a>($<span class="keywordtype">id</span>)
|
||||
00294 {
|
||||
00295 <span class="keywordflow">return</span> array('pathdata' => $this->gb->getPath($<span class="keywordtype">id</span>),
|
||||
00296 'perms' => $this->gb->getObjPerms($<span class="keywordtype">id</span>),
|
||||
00297 'actions' => $this->gb->getAllowedActions($this->gb->getObjType($<span class="keywordtype">id</span>)),
|
||||
00298 '<a class="code" href="ui__browser_8php.html#a5">subjects</a>' => $this->gb->getSubjects(),
|
||||
00299 '<span class="keywordtype">id</span>' => $id,
|
||||
00300 'loggedAs' => $this->login
|
||||
00301 );
|
||||
00302 }
|
||||
00303
|
||||
<a name="l00313"></a><a class="code" href="classuiBrowser.html#a13">00313</a> function <a class="code" href="classuiBrowser.html#a13">getNewFileData</a>($<span class="keywordtype">id</span>)
|
||||
00314 {
|
||||
00315 <span class="keywordflow">return</span> array('pathdata' => $this->gb->getPath($<span class="keywordtype">id</span>, $this->sessid),
|
||||
00316 'showEdit' => <span class="keyword">true</span>,
|
||||
00317 '<span class="keywordtype">id</span>' => $id,
|
||||
00318 );
|
||||
00319 }
|
||||
00320
|
||||
<a name="l00330"></a><a class="code" href="classuiBrowser.html#a14">00330</a> function <a class="code" href="classuiBrowser.html#a14">getSearchRes</a>($<span class="keywordtype">id</span>, $search)
|
||||
00331 {
|
||||
00332 foreach ($this->gb->localSearch($<a class="code" href="ui__browser_8php.html#a4">search</a>, $this->sessid) as $rec) {
|
||||
00333 $res = array('items' => array('gunid' => $rec,
|
||||
00334 'par_id' => $this->gb->_idFromGunid($rec)));
|
||||
00335 }
|
||||
00336
|
||||
00337 <span class="keywordflow">return</span> array('<a class="code" href="ui__browser_8php.html#a4">search</a>' => $res,
|
||||
00338 'showSRes' => <span class="keyword">true</span>,
|
||||
00339 '<span class="keywordtype">id</span>' => $<span class="keywordtype">id</span>
|
||||
00340 );
|
||||
00341
|
||||
00342 }
|
||||
00343
|
||||
<a name="l00353"></a><a class="code" href="classuiBrowser.html#a15">00353</a> function <a class="code" href="classuiBrowser.html#a15">getFile</a>($<span class="keywordtype">id</span>)
|
||||
00354 {
|
||||
00355 $r = $this->gb->access($<span class="keywordtype">id</span>, $this->sessid);
|
||||
00356 <span class="keywordflow">if</span>(PEAR::isError($r)) $_SESSION['<a class="code" href="classuiBrowser.html#a1">alertMsg</a>'] = $r->getMessage();
|
||||
00357 <span class="keywordflow">else</span> print_r($r);
|
||||
00358 }
|
||||
00359
|
||||
<a name="l00368"></a><a class="code" href="classuiBrowser.html#a16">00368</a> function <a class="code" href="classuiBrowser.html#a16">getMdata</a>($<span class="keywordtype">id</span>)
|
||||
00369 {
|
||||
00370 <span class="keywordflow">return</span>($this->gb->getMdata($<span class="keywordtype">id</span>, $this->sessid));
|
||||
00371 }
|
||||
00372
|
||||
<a name="l00380"></a><a class="code" href="classuiBrowser.html#a17">00380</a> function <a class="code" href="classuiBrowser.html#a17">getInfo</a>($<span class="keywordtype">id</span>)
|
||||
00381 {
|
||||
00382 $ia = $this->gb->analyzeFile($<span class="keywordtype">id</span>, $this->sessid);
|
||||
00383
|
||||
00384 <span class="keywordflow">return</span> <span class="stringliteral">"fileformat: {$ia['fileformat']}<br></span>
|
||||
00385 <span class="stringliteral"> channels: {$ia['audio']['channels']}<br></span>
|
||||
00386 <span class="stringliteral"> sample_rate: {$ia['audio']['sample_rate']}<br></span>
|
||||
00387 <span class="stringliteral"> bits_per_sample: {$ia['audio']['bits_per_sample']}<br></span>
|
||||
00388 <span class="stringliteral"> channelmode: {$ia['audio']['channelmode']}<br></span>
|
||||
00389 <span class="stringliteral"> title: {$ia['id3v1']['title']}<br></span>
|
||||
00390 <span class="stringliteral"> artist: {$ia['id3v1']['artist']}<br></span>
|
||||
00391 <span class="stringliteral"> comment: {$ia['id3v1']['comment']}"</span>;
|
||||
00392 }
|
||||
00393
|
||||
<a name="l00402"></a><a class="code" href="classuiBrowser.html#a18">00402</a> function <a class="code" href="classuiBrowser.html#a18">getMetadataForm</a>($<span class="keywordtype">id</span>, &$mask)
|
||||
00403 {
|
||||
00404 $form = <span class="keyword">new</span> HTML_QuickForm('<a class="code" href="ui__browser_8php.html#a12">editMetaData</a>', UI_STANDARD_FORM_METHOD, <a class="code" href="conf_8php.html#a1">UI_HANDLER</a>);
|
||||
00405 $form->setConstants(array('act'=>'<a class="code" href="ui__browser_8php.html#a12">editMetaData</a>',
|
||||
00406 '<span class="keywordtype">id</span>'=>$<span class="keywordtype">id</span>));
|
||||
00407 $form->addElement('hidden', 'act');
|
||||
00408 $form->addElement('hidden', '<span class="keywordtype">id</span>');
|
||||
00409
|
||||
00410 $this-><a class="code" href="classuiBase.html#a1">_parseArr2Form</a>($form, $mask);
|
||||
00411
|
||||
00412 <span class="keywordflow">return</span> $form->toHTML();
|
||||
00413 }
|
||||
00414
|
||||
00415
|
||||
<a name="l00416"></a><a class="code" href="classuiBrowser.html#a19">00416</a> function <a class="code" href="classuiBrowser.html#a19">systemPrefs</a>(&$mask)
|
||||
00417 {
|
||||
00418 $form = <span class="keyword">new</span> HTML_QuickForm('<a class="code" href="classuiBrowser.html#a19">systemPrefs</a>', UI_STANDARD_FORM_METHOD, <a class="code" href="conf_8php.html#a1">UI_HANDLER</a>);
|
||||
00419 $form->setConstants(array('act'=>'<a class="code" href="classuiBrowser.html#a19">systemPrefs</a>'));
|
||||
00420 $form->addElement('hidden', 'act');
|
||||
00421
|
||||
00422 $this-><a class="code" href="classuiBase.html#a1">_parseArr2Form</a>($form, $mask);
|
||||
00423
|
||||
00424 <span class="preprocessor"> ## using Static Smarty Renderer</span>
|
||||
00425 <span class="preprocessor"></span> $renderer =& <span class="keyword">new</span> HTML_QuickForm_Renderer_Array(<span class="keyword">true</span>, <span class="keyword">true</span>);
|
||||
00426 $form->accept($renderer);
|
||||
00427
|
||||
00428 <span class="keywordflow">return</span> $renderer->toArray();
|
||||
00429 }
|
||||
00430 }
|
||||
00431 ?>
|
||||
</pre></div><hr size="1"><address style="align: right;"><small>Generated on Wed Jan 12 16:22:49 2005 for LiveSupport - htmlUI module by
|
||||
<a href="http://www.doxygen.org/index.html">
|
||||
<img src="doxygen.png" alt="doxygen" align="middle" border="0"></a> 1.4.0 </small></address>
|
||||
</body>
|
||||
</html>
|
|
@ -1,19 +0,0 @@
|
|||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
|
||||
<html><head><meta http-equiv="Content-Type" content="text/html;charset=iso-8859-1">
|
||||
<title>LiveSupport&nbsp;-&nbsp;htmlUI&nbsp;module: ui_browser.class.php File Reference</title>
|
||||
<link href="doxygen.css" rel="stylesheet" type="text/css">
|
||||
</head><body>
|
||||
<!-- Generated by Doxygen 1.4.0 -->
|
||||
<div class="qindex"><a class="qindex" href="index.html">Main Page</a> | <a class="qindex" href="hierarchy.html">Class Hierarchy</a> | <a class="qindex" href="classes.html">Alphabetical List</a> | <a class="qindex" href="annotated.html">Class List</a> | <a class="qindex" href="dirs.html">Directories</a> | <a class="qindex" href="files.html">File List</a> | <a class="qindex" href="functions.html">Class Members</a> | <a class="qindex" href="globals.html">File Members</a></div>
|
||||
<div class="nav">
|
||||
<a class="el" href="dir_000000.html">var</a></div>
|
||||
<h1>ui_browser.class.php File Reference</h1>
|
||||
<p>
|
||||
<a href="ui__browser_8class_8php-source.html">Go to the source code of this file.</a><table border="0" cellpadding="0" cellspacing="0">
|
||||
<tr><td></td></tr>
|
||||
</table>
|
||||
<hr size="1"><address style="align: right;"><small>Generated on Wed Jan 12 16:22:49 2005 for LiveSupport - htmlUI module by
|
||||
<a href="http://www.doxygen.org/index.html">
|
||||
<img src="doxygen.png" alt="doxygen" align="middle" border="0"></a> 1.4.0 </small></address>
|
||||
</body>
|
||||
</html>
|
|
@ -1,125 +0,0 @@
|
|||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
|
||||
<html><head><meta http-equiv="Content-Type" content="text/html;charset=iso-8859-1">
|
||||
<title>LiveSupport&nbsp;-&nbsp;htmlUI&nbsp;module: ui_browser.php Source File</title>
|
||||
<link href="doxygen.css" rel="stylesheet" type="text/css">
|
||||
</head><body>
|
||||
<!-- Generated by Doxygen 1.4.0 -->
|
||||
<div class="qindex"><a class="qindex" href="index.html">Main Page</a> | <a class="qindex" href="hierarchy.html">Class Hierarchy</a> | <a class="qindex" href="classes.html">Alphabetical List</a> | <a class="qindex" href="annotated.html">Class List</a> | <a class="qindex" href="dirs.html">Directories</a> | <a class="qindex" href="files.html">File List</a> | <a class="qindex" href="functions.html">Class Members</a> | <a class="qindex" href="globals.html">File Members</a></div>
|
||||
<div class="nav">
|
||||
<a class="el" href="dir_000000.html">var</a> / <a class="el" href="dir_000001.html">html</a></div>
|
||||
<h1>ui_browser.php</h1><a href="ui__browser_8php.html">Go to the documentation of this file.</a><div class="fragment"><pre class="fragment">00001 <?php
|
||||
00002 require_once dirname(__FILE__).'/../ui_browser_init.php';
|
||||
00003
|
||||
00004 <span class="keywordflow">if</span> (!$<a class="code" href="classuiBrowser.html">uiBrowser</a>->sessid) {
|
||||
00005 <a class="code" href="ui__browser__init_8php.html#a0">$Smarty</a>->assign('loginform', $<a class="code" href="classuiBrowser.html">uiBrowser</a>->loginform($Smarty, $ui_fmask['login']));
|
||||
00006 <a class="code" href="ui__browser__init_8php.html#a0">$Smarty</a>->display('login.tpl');
|
||||
00007 die();
|
||||
00008 }
|
||||
00009
|
||||
00010
|
||||
00011
|
||||
00012 <span class="keywordflow">switch</span>(<a class="code" href="ui__handler_8php.html#a11">$_REQUEST</a>['act']){
|
||||
00013 <span class="keywordflow">case</span> <span class="stringliteral">"getHomeDir"</span>:
|
||||
00014 <span class="keywordflow">default</span>:
|
||||
00015 <a class="code" href="ui__browser__init_8php.html#a0">$Smarty</a>->assign('structure', $<a class="code" href="classuiBrowser.html">uiBrowser</a>->getStructure($<a class="code" href="classuiBrowser.html">uiBrowser</a>->id, $_REQUEST['act']=='getHomeDir' ? TRUE : FALSE));
|
||||
00016 <a class="code" href="ui__browser__init_8php.html#a0">$Smarty</a>->assign('showPath', TRUE);
|
||||
00017
|
||||
00018 <span class="keywordflow">if</span> ($_REQUEST['tree']==<span class="charliteral">'Y'</span>) {
|
||||
00019 <a class="code" href="ui__browser__init_8php.html#a0">$Smarty</a>->assign('showTree', TRUE);
|
||||
00020 } <span class="keywordflow">else</span> {
|
||||
00021 <a class="code" href="ui__browser__init_8php.html#a0">$Smarty</a>->assign('showObjects', TRUE);
|
||||
00022 }
|
||||
00023 <a class="code" href="ui__browser__init_8php.html#a0">$Smarty</a>->assign('delOverride', $_REQUEST['delOverride']);
|
||||
00024 <a class="code" href="ui__browser__init_8php.html#a0">$Smarty</a>->assign('obj_types', array('Folder'=><span class="charliteral">'D'</span>, 'File'=><span class="charliteral">'F'</span>, 'Replica'=><span class="charliteral">'R'</span>));
|
||||
00025 <span class="keywordflow">break</span>;
|
||||
00026
|
||||
00027 <span class="keywordflow">case</span> <span class="stringliteral">"permissions"</span>:
|
||||
<a name="l00028"></a><a class="code" href="ui__browser_8php.html#a1">00028</a> <a class="code" href="ui__browser__init_8php.html#a0">$Smarty</a>->assign('structure', $<a class="code" href="classuiBrowser.html">uiBrowser</a>->getStructure($<a class="code" href="classuiBrowser.html">uiBrowser</a>->id, $_REQUEST['act']=='getHomeDir' ? TRUE : FALSE));
|
||||
00029 <a class="code" href="ui__browser__init_8php.html#a0">$Smarty</a>->assign('showPath', TRUE);
|
||||
00030
|
||||
00031 <a class="code" href="ui__browser__init_8php.html#a0">$Smarty</a>->assign('perms', $<a class="code" href="classuiBrowser.html">uiBrowser</a>->getPermissions($<a class="code" href="classuiBrowser.html">uiBrowser</a>->id));
|
||||
00032 <a class="code" href="ui__browser__init_8php.html#a0">$Smarty</a>->assign('showPermissions', TRUE);
|
||||
00033 <span class="keywordflow">break</span>;
|
||||
00034
|
||||
00035 <span class="keywordflow">case</span> <span class="stringliteral">"newfile"</span>:
|
||||
<a name="l00036"></a><a class="code" href="ui__browser_8php.html#a2">00036</a> <a class="code" href="ui__browser__init_8php.html#a0">$Smarty</a>->assign('structure', $<a class="code" href="classuiBrowser.html">uiBrowser</a>->getStructure($<a class="code" href="classuiBrowser.html">uiBrowser</a>->id, $_REQUEST['act']=='getHomeDir' ? TRUE : FALSE));
|
||||
00037 <a class="code" href="ui__browser__init_8php.html#a0">$Smarty</a>->assign('showPath', TRUE);
|
||||
00038
|
||||
00039 <a class="code" href="ui__browser__init_8php.html#a0">$Smarty</a>->assign('newfiledata', $<a class="code" href="classuiBrowser.html">uiBrowser</a>->getNewFileData($<a class="code" href="classuiBrowser.html">uiBrowser</a>->id));
|
||||
00040 <a class="code" href="ui__browser__init_8php.html#a0">$Smarty</a>->assign('newfileform', $<a class="code" href="classuiBrowser.html">uiBrowser</a>->getNewFileForm($<a class="code" href="classuiBrowser.html">uiBrowser</a>->id, $ui_fmask['upload']));
|
||||
00041 <a class="code" href="ui__browser__init_8php.html#a0">$Smarty</a>->assign('showNewFileForm', TRUE);
|
||||
00042 <span class="keywordflow">break</span>;
|
||||
00043
|
||||
00044 <span class="keywordflow">case</span> <span class="stringliteral">"sform"</span>:
|
||||
<a name="l00045"></a><a class="code" href="ui__browser_8php.html#a3">00045</a> <a class="code" href="ui__browser__init_8php.html#a0">$Smarty</a>->assign('searchform', $<a class="code" href="classuiBrowser.html">uiBrowser</a>->getSearchForm($<a class="code" href="classuiBrowser.html">uiBrowser</a>->id, $ui_fmask['search']));
|
||||
00046 <a class="code" href="ui__browser__init_8php.html#a0">$Smarty</a>->assign('showSearchForm', TRUE);
|
||||
00047
|
||||
00048 <span class="keywordflow">break</span>;
|
||||
00049
|
||||
00050 <span class="keywordflow">case</span> <span class="stringliteral">"search"</span>:
|
||||
<a name="l00051"></a><a class="code" href="ui__browser_8php.html#a4">00051</a> <a class="code" href="ui__browser__init_8php.html#a0">$Smarty</a>->assign('searchres', $<a class="code" href="classuiBrowser.html">uiBrowser</a>->getSearchRes($uiBrwoser->id, $_REQUEST['search']));
|
||||
00052 <a class="code" href="ui__browser__init_8php.html#a0">$Smarty</a>->assign('showSearchRes', TRUE);
|
||||
00053 <a class="code" href="ui__browser__init_8php.html#a0">$Smarty</a>->assign('searchform', $<a class="code" href="classuiBrowser.html">uiBrowser</a>->getSearchForm($uiBrwoser->id, $ui_fmask['search']));
|
||||
00054 <a class="code" href="ui__browser__init_8php.html#a0">$Smarty</a>->assign('showSearchForm', TRUE);
|
||||
00055
|
||||
00056 <span class="keywordflow">break</span>;
|
||||
00057
|
||||
00058 <span class="keywordflow">case</span> <span class="stringliteral">"subjects"</span>:
|
||||
00059 <span class="keywordflow">case</span> <span class="stringliteral">"addUser"</span>:
|
||||
00060 <span class="keywordflow">case</span> <span class="stringliteral">"addGroup"</span>:
|
||||
<a name="l00061"></a><a class="code" href="ui__browser_8php.html#a5">00061</a> <a class="code" href="ui__browser__init_8php.html#a0">$Smarty</a>->assign('subjects', $<a class="code" href="classuiBrowser.html">uiBrowser</a>->getSubjects());
|
||||
00062 <span class="keywordflow">switch</span>(<a class="code" href="ui__handler_8php.html#a11">$_REQUEST</a>['act']) {
|
||||
00063 <span class="keywordflow">case</span> <span class="stringliteral">"addUser"</span>: <a class="code" href="ui__browser__init_8php.html#a0">$Smarty</a>->assign('addSubjectForm', $<a class="code" href="classuiBrowser.html">uiBrowser</a>->getAddSubjectForm($ui_fmask['<a class="code" href="ui__handler_8php.html#a12">addUser</a>'])); <span class="keywordflow">break</span>;
|
||||
<a name="l00064"></a><a class="code" href="ui__browser_8php.html#a6">00064</a> <span class="keywordflow">case</span> <span class="stringliteral">"addGroup"</span>: <a class="code" href="ui__browser__init_8php.html#a0">$Smarty</a>->assign('addSubjectForm', $<a class="code" href="classuiBrowser.html">uiBrowser</a>->getAddSubjectForm($ui_fmask['addGroup'])); <span class="keywordflow">break</span>;
|
||||
00065 }
|
||||
00066 <a class="code" href="ui__browser__init_8php.html#a0">$Smarty</a>->assign('showSubjects', TRUE);
|
||||
00067 <span class="keywordflow">break</span>;
|
||||
00068
|
||||
00069 <span class="keywordflow">case</span> <span class="stringliteral">"passwd"</span>:
|
||||
<a name="l00070"></a><a class="code" href="ui__browser_8php.html#a7">00070</a> <a class="code" href="ui__browser__init_8php.html#a0">$Smarty</a>->assign('changePassForm', $<a class="code" href="classuiBrowser.html">uiBrowser</a>->getChangePasswdForm($_REQUEST['uid']));
|
||||
00071 <a class="code" href="ui__browser__init_8php.html#a0">$Smarty</a>->assign('showSubjects', TRUE);
|
||||
00072 <span class="keywordflow">break</span>;
|
||||
00073
|
||||
00074 <span class="keywordflow">case</span> <span class="stringliteral">"groups"</span>:
|
||||
<a name="l00075"></a><a class="code" href="ui__browser_8php.html#a8">00075</a> <a class="code" href="ui__browser__init_8php.html#a0">$Smarty</a>->assign('groups', $<a class="code" href="classuiBrowser.html">uiBrowser</a>->getGroups($<a class="code" href="classuiBrowser.html">uiBrowser</a>->id));
|
||||
00076 <a class="code" href="ui__browser__init_8php.html#a0">$Smarty</a>->assign('addSubj2GroupForm', $<a class="code" href="classuiBrowser.html">uiBrowser</a>->getSubj2GroupForm($<a class="code" href="classuiBrowser.html">uiBrowser</a>->id));
|
||||
00077 <a class="code" href="ui__browser__init_8php.html#a0">$Smarty</a>->assign('showSubjects', TRUE);
|
||||
00078 <span class="keywordflow">break</span>;
|
||||
00079
|
||||
00080 <span class="keywordflow">case</span> <span class="stringliteral">"getFile"</span>:
|
||||
<a name="l00081"></a><a class="code" href="ui__browser_8php.html#a9">00081</a> <a class="code" href="ui__browser__init_8php.html#a0">$Smarty</a>->assign('fData', $<a class="code" href="classuiBrowser.html">uiBrowser</a>->getFile($<a class="code" href="classuiBrowser.html">uiBrowser</a>->id));
|
||||
00082 <a class="code" href="ui__browser__init_8php.html#a0">$Smarty</a>->assign('showFile', TRUE);
|
||||
00083 <span class="keywordflow">break</span>;
|
||||
00084
|
||||
00085 <span class="keywordflow">case</span> <span class="stringliteral">"getMdata"</span>:
|
||||
<a name="l00086"></a><a class="code" href="ui__browser_8php.html#a10">00086</a> <a class="code" href="ui__browser__init_8php.html#a0">$Smarty</a>->assign('fMetaData', $<a class="code" href="classuiBrowser.html">uiBrowser</a>->getMdata($<a class="code" href="classuiBrowser.html">uiBrowser</a>->id));
|
||||
00087 <a class="code" href="ui__browser__init_8php.html#a0">$Smarty</a>->assign('showFile', TRUE);
|
||||
00088 <span class="keywordflow">break</span>;
|
||||
00089
|
||||
00090 <span class="keywordflow">case</span> <span class="stringliteral">"getInfo"</span>:
|
||||
<a name="l00091"></a><a class="code" href="ui__browser_8php.html#a11">00091</a> <a class="code" href="ui__browser__init_8php.html#a0">$Smarty</a>->assign('fInfo', $<a class="code" href="classuiBrowser.html">uiBrowser</a>->getInfo($<a class="code" href="classuiBrowser.html">uiBrowser</a>->id));
|
||||
00092 <a class="code" href="ui__browser__init_8php.html#a0">$Smarty</a>->assign('showFile', TRUE);
|
||||
00093 <span class="keywordflow">break</span>;
|
||||
00094
|
||||
00095 <span class="keywordflow">case</span> <span class="stringliteral">"editMetaData"</span>:
|
||||
<a name="l00096"></a><a class="code" href="ui__browser_8php.html#a12">00096</a> <a class="code" href="ui__browser__init_8php.html#a0">$Smarty</a>->assign('mDataForm', $<a class="code" href="classuiBrowser.html">uiBrowser</a>->getMetaDataForm($<a class="code" href="classuiBrowser.html">uiBrowser</a>->id, $ui_fmask['mData']));
|
||||
00097 <a class="code" href="ui__browser__init_8php.html#a0">$Smarty</a>->assign('showMetaDataForm', TRUE);
|
||||
00098 <span class="keywordflow">break</span>;
|
||||
00099
|
||||
00100 <span class="keywordflow">case</span> <span class="stringliteral">"systemPrefs"</span>:
|
||||
<a name="l00101"></a><a class="code" href="ui__browser_8php.html#a13">00101</a> <a class="code" href="ui__browser__init_8php.html#a0">$Smarty</a>->assign('dynform', $<a class="code" href="classuiBrowser.html">uiBrowser</a>->systemPrefs($ui_fmask['systemPrefs']));
|
||||
00102 <a class="code" href="ui__browser__init_8php.html#a0">$Smarty</a>->assign('showSystemPrefs', TRUE);
|
||||
<a name="l00103"></a><a class="code" href="ui__browser_8php.html#a0">00103</a> <span class="keywordflow">break</span>;
|
||||
00104 }
|
||||
00105 <span class="preprocessor">## end gbHtmlBrowse.php</span>
|
||||
00106 <span class="preprocessor"></span>
|
||||
00107 <a class="code" href="ui__browser__init_8php.html#a0">$Smarty</a>->assign('userinfo', $<a class="code" href="classuiBrowser.html">uiBrowser</a>->getUserInfo());
|
||||
00108 <a class="code" href="ui__browser__init_8php.html#a0">$Smarty</a>->assign('logouthref', <a class="code" href="conf_8php.html#a1">UI_HANDLER</a>.'?act=logout');
|
||||
00109
|
||||
00110 <a class="code" href="ui__browser__init_8php.html#a0">$Smarty</a>->display('main.tpl');
|
||||
00111 ?>
|
||||
</pre></div><hr size="1"><address style="align: right;"><small>Generated on Wed Jan 12 16:22:49 2005 for LiveSupport - htmlUI module by
|
||||
<a href="http://www.doxygen.org/index.html">
|
||||
<img src="doxygen.png" alt="doxygen" align="middle" border="0"></a> 1.4.0 </small></address>
|
||||
</body>
|
||||
</html>
|
|
@ -1,413 +0,0 @@
|
|||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
|
||||
<html><head><meta http-equiv="Content-Type" content="text/html;charset=iso-8859-1">
|
||||
<title>LiveSupport&nbsp;-&nbsp;htmlUI&nbsp;module: ui_browser.php File Reference</title>
|
||||
<link href="doxygen.css" rel="stylesheet" type="text/css">
|
||||
</head><body>
|
||||
<!-- Generated by Doxygen 1.4.0 -->
|
||||
<div class="qindex"><a class="qindex" href="index.html">Main Page</a> | <a class="qindex" href="hierarchy.html">Class Hierarchy</a> | <a class="qindex" href="classes.html">Alphabetical List</a> | <a class="qindex" href="annotated.html">Class List</a> | <a class="qindex" href="dirs.html">Directories</a> | <a class="qindex" href="files.html">File List</a> | <a class="qindex" href="functions.html">Class Members</a> | <a class="qindex" href="globals.html">File Members</a></div>
|
||||
<div class="nav">
|
||||
<a class="el" href="dir_000000.html">var</a> / <a class="el" href="dir_000001.html">html</a></div>
|
||||
<h1>ui_browser.php File Reference</h1>
|
||||
<p>
|
||||
<a href="ui__browser_8php-source.html">Go to the source code of this file.</a><table border="0" cellpadding="0" cellspacing="0">
|
||||
<tr><td></td></tr>
|
||||
<tr><td colspan="2"><br><h2>Variables</h2></td></tr>
|
||||
<tr><td class="memItemLeft" nowrap align="right" valign="top"> </td><td class="memItemRight" valign="bottom"><a class="el" href="ui__browser_8php.html#a0">break</a></td></tr>
|
||||
|
||||
<tr><td class="memItemLeft" nowrap align="right" valign="top">case </td><td class="memItemRight" valign="bottom"><a class="el" href="ui__browser_8php.html#a1">permissions</a></td></tr>
|
||||
|
||||
<tr><td class="memItemLeft" nowrap align="right" valign="top">case </td><td class="memItemRight" valign="bottom"><a class="el" href="ui__browser_8php.html#a2">newfile</a></td></tr>
|
||||
|
||||
<tr><td class="memItemLeft" nowrap align="right" valign="top">case </td><td class="memItemRight" valign="bottom"><a class="el" href="ui__browser_8php.html#a3">sform</a></td></tr>
|
||||
|
||||
<tr><td class="memItemLeft" nowrap align="right" valign="top">case </td><td class="memItemRight" valign="bottom"><a class="el" href="ui__browser_8php.html#a4">search</a></td></tr>
|
||||
|
||||
<tr><td class="memItemLeft" nowrap align="right" valign="top">case </td><td class="memItemRight" valign="bottom"><a class="el" href="ui__browser_8php.html#a5">subjects</a></td></tr>
|
||||
|
||||
<tr><td class="memItemLeft" nowrap align="right" valign="top">case </td><td class="memItemRight" valign="bottom"><a class="el" href="ui__browser_8php.html#a6">addGroup</a></td></tr>
|
||||
|
||||
<tr><td class="memItemLeft" nowrap align="right" valign="top">case </td><td class="memItemRight" valign="bottom"><a class="el" href="ui__browser_8php.html#a7">passwd</a></td></tr>
|
||||
|
||||
<tr><td class="memItemLeft" nowrap align="right" valign="top">case </td><td class="memItemRight" valign="bottom"><a class="el" href="ui__browser_8php.html#a8">groups</a></td></tr>
|
||||
|
||||
<tr><td class="memItemLeft" nowrap align="right" valign="top">case </td><td class="memItemRight" valign="bottom"><a class="el" href="ui__browser_8php.html#a9">getFile</a></td></tr>
|
||||
|
||||
<tr><td class="memItemLeft" nowrap align="right" valign="top">case </td><td class="memItemRight" valign="bottom"><a class="el" href="ui__browser_8php.html#a10">getMdata</a></td></tr>
|
||||
|
||||
<tr><td class="memItemLeft" nowrap align="right" valign="top">case </td><td class="memItemRight" valign="bottom"><a class="el" href="ui__browser_8php.html#a11">getInfo</a></td></tr>
|
||||
|
||||
<tr><td class="memItemLeft" nowrap align="right" valign="top">case </td><td class="memItemRight" valign="bottom"><a class="el" href="ui__browser_8php.html#a12">editMetaData</a></td></tr>
|
||||
|
||||
<tr><td class="memItemLeft" nowrap align="right" valign="top">case </td><td class="memItemRight" valign="bottom"><a class="el" href="ui__browser_8php.html#a13">systemPrefs</a></td></tr>
|
||||
|
||||
</table>
|
||||
<hr><h2>Variable Documentation</h2>
|
||||
<a class="anchor" name="a6" doxytag="ui_browser.php::addGroup"></a><p>
|
||||
<table class="mdTable" cellpadding="2" cellspacing="0">
|
||||
<tr>
|
||||
<td class="mdRow">
|
||||
<table cellpadding="0" cellspacing="0" border="0">
|
||||
<tr>
|
||||
<td class="md" nowrap valign="top">case <a class="el" href="ui__handler_8php.html#a13">addGroup</a> </td>
|
||||
</tr>
|
||||
</table>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
<table cellspacing="5" cellpadding="0" border="0">
|
||||
<tr>
|
||||
<td>
|
||||
|
||||
</td>
|
||||
<td>
|
||||
|
||||
<p>
|
||||
|
||||
<p>
|
||||
Definition at line <a class="el" href="ui__browser_8php-source.html#l00064">64</a> of file <a class="el" href="ui__browser_8php-source.html">ui_browser.php</a>. </td>
|
||||
</tr>
|
||||
</table>
|
||||
<a class="anchor" name="a0" doxytag="ui_browser.php::break"></a><p>
|
||||
<table class="mdTable" cellpadding="2" cellspacing="0">
|
||||
<tr>
|
||||
<td class="mdRow">
|
||||
<table cellpadding="0" cellspacing="0" border="0">
|
||||
<tr>
|
||||
<td class="md" nowrap valign="top"><a class="el" href="ui__handler_8php.html#a0">break</a> </td>
|
||||
</tr>
|
||||
</table>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
<table cellspacing="5" cellpadding="0" border="0">
|
||||
<tr>
|
||||
<td>
|
||||
|
||||
</td>
|
||||
<td>
|
||||
|
||||
<p>
|
||||
|
||||
<p>
|
||||
Definition at line <a class="el" href="ui__browser_8php-source.html#l00103">103</a> of file <a class="el" href="ui__browser_8php-source.html">ui_browser.php</a>. </td>
|
||||
</tr>
|
||||
</table>
|
||||
<a class="anchor" name="a12" doxytag="ui_browser.php::editMetaData"></a><p>
|
||||
<table class="mdTable" cellpadding="2" cellspacing="0">
|
||||
<tr>
|
||||
<td class="mdRow">
|
||||
<table cellpadding="0" cellspacing="0" border="0">
|
||||
<tr>
|
||||
<td class="md" nowrap valign="top">case <a class="el" href="ui__browser_8php.html#a12">editMetaData</a> </td>
|
||||
</tr>
|
||||
</table>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
<table cellspacing="5" cellpadding="0" border="0">
|
||||
<tr>
|
||||
<td>
|
||||
|
||||
</td>
|
||||
<td>
|
||||
|
||||
<p>
|
||||
|
||||
<p>
|
||||
Definition at line <a class="el" href="ui__browser_8php-source.html#l00096">96</a> of file <a class="el" href="ui__browser_8php-source.html">ui_browser.php</a>.
|
||||
<p>
|
||||
Referenced by <a class="el" href="ui__browser_8class_8php-source.html#l00402">uiBrowser::getMetadataForm()</a>. </td>
|
||||
</tr>
|
||||
</table>
|
||||
<a class="anchor" name="a9" doxytag="ui_browser.php::getFile"></a><p>
|
||||
<table class="mdTable" cellpadding="2" cellspacing="0">
|
||||
<tr>
|
||||
<td class="mdRow">
|
||||
<table cellpadding="0" cellspacing="0" border="0">
|
||||
<tr>
|
||||
<td class="md" nowrap valign="top">case <a class="el" href="ui__browser_8php.html#a9">getFile</a> </td>
|
||||
</tr>
|
||||
</table>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
<table cellspacing="5" cellpadding="0" border="0">
|
||||
<tr>
|
||||
<td>
|
||||
|
||||
</td>
|
||||
<td>
|
||||
|
||||
<p>
|
||||
|
||||
<p>
|
||||
Definition at line <a class="el" href="ui__browser_8php-source.html#l00081">81</a> of file <a class="el" href="ui__browser_8php-source.html">ui_browser.php</a>. </td>
|
||||
</tr>
|
||||
</table>
|
||||
<a class="anchor" name="a11" doxytag="ui_browser.php::getInfo"></a><p>
|
||||
<table class="mdTable" cellpadding="2" cellspacing="0">
|
||||
<tr>
|
||||
<td class="mdRow">
|
||||
<table cellpadding="0" cellspacing="0" border="0">
|
||||
<tr>
|
||||
<td class="md" nowrap valign="top">case <a class="el" href="ui__browser_8php.html#a11">getInfo</a> </td>
|
||||
</tr>
|
||||
</table>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
<table cellspacing="5" cellpadding="0" border="0">
|
||||
<tr>
|
||||
<td>
|
||||
|
||||
</td>
|
||||
<td>
|
||||
|
||||
<p>
|
||||
|
||||
<p>
|
||||
Definition at line <a class="el" href="ui__browser_8php-source.html#l00091">91</a> of file <a class="el" href="ui__browser_8php-source.html">ui_browser.php</a>. </td>
|
||||
</tr>
|
||||
</table>
|
||||
<a class="anchor" name="a10" doxytag="ui_browser.php::getMdata"></a><p>
|
||||
<table class="mdTable" cellpadding="2" cellspacing="0">
|
||||
<tr>
|
||||
<td class="mdRow">
|
||||
<table cellpadding="0" cellspacing="0" border="0">
|
||||
<tr>
|
||||
<td class="md" nowrap valign="top">case <a class="el" href="ui__browser_8php.html#a10">getMdata</a> </td>
|
||||
</tr>
|
||||
</table>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
<table cellspacing="5" cellpadding="0" border="0">
|
||||
<tr>
|
||||
<td>
|
||||
|
||||
</td>
|
||||
<td>
|
||||
|
||||
<p>
|
||||
|
||||
<p>
|
||||
Definition at line <a class="el" href="ui__browser_8php-source.html#l00086">86</a> of file <a class="el" href="ui__browser_8php-source.html">ui_browser.php</a>. </td>
|
||||
</tr>
|
||||
</table>
|
||||
<a class="anchor" name="a8" doxytag="ui_browser.php::groups"></a><p>
|
||||
<table class="mdTable" cellpadding="2" cellspacing="0">
|
||||
<tr>
|
||||
<td class="mdRow">
|
||||
<table cellpadding="0" cellspacing="0" border="0">
|
||||
<tr>
|
||||
<td class="md" nowrap valign="top">case <a class="el" href="ui__browser_8php.html#a8">groups</a> </td>
|
||||
</tr>
|
||||
</table>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
<table cellspacing="5" cellpadding="0" border="0">
|
||||
<tr>
|
||||
<td>
|
||||
|
||||
</td>
|
||||
<td>
|
||||
|
||||
<p>
|
||||
|
||||
<p>
|
||||
Definition at line <a class="el" href="ui__browser_8php-source.html#l00075">75</a> of file <a class="el" href="ui__browser_8php-source.html">ui_browser.php</a>.
|
||||
<p>
|
||||
Referenced by <a class="el" href="ui__handler_8class_8php-source.html#l00384">uiHandler::addSubj2Group()</a>, and <a class="el" href="ui__handler_8class_8php-source.html#l00404">uiHandler::removeSubjFromGr()</a>. </td>
|
||||
</tr>
|
||||
</table>
|
||||
<a class="anchor" name="a2" doxytag="ui_browser.php::newfile"></a><p>
|
||||
<table class="mdTable" cellpadding="2" cellspacing="0">
|
||||
<tr>
|
||||
<td class="mdRow">
|
||||
<table cellpadding="0" cellspacing="0" border="0">
|
||||
<tr>
|
||||
<td class="md" nowrap valign="top">case <a class="el" href="ui__browser_8php.html#a2">newfile</a> </td>
|
||||
</tr>
|
||||
</table>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
<table cellspacing="5" cellpadding="0" border="0">
|
||||
<tr>
|
||||
<td>
|
||||
|
||||
</td>
|
||||
<td>
|
||||
|
||||
<p>
|
||||
|
||||
<p>
|
||||
Definition at line <a class="el" href="ui__browser_8php-source.html#l00036">36</a> of file <a class="el" href="ui__browser_8php-source.html">ui_browser.php</a>.
|
||||
<p>
|
||||
Referenced by <a class="el" href="ui__browser_8class_8php-source.html#l00139">uiBrowser::getNewFileForm()</a>. </td>
|
||||
</tr>
|
||||
</table>
|
||||
<a class="anchor" name="a7" doxytag="ui_browser.php::passwd"></a><p>
|
||||
<table class="mdTable" cellpadding="2" cellspacing="0">
|
||||
<tr>
|
||||
<td class="mdRow">
|
||||
<table cellpadding="0" cellspacing="0" border="0">
|
||||
<tr>
|
||||
<td class="md" nowrap valign="top">case <a class="el" href="ui__browser_8php.html#a7">passwd</a> </td>
|
||||
</tr>
|
||||
</table>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
<table cellspacing="5" cellpadding="0" border="0">
|
||||
<tr>
|
||||
<td>
|
||||
|
||||
</td>
|
||||
<td>
|
||||
|
||||
<p>
|
||||
|
||||
<p>
|
||||
Definition at line <a class="el" href="ui__browser_8php-source.html#l00070">70</a> of file <a class="el" href="ui__browser_8php-source.html">ui_browser.php</a>. </td>
|
||||
</tr>
|
||||
</table>
|
||||
<a class="anchor" name="a1" doxytag="ui_browser.php::permissions"></a><p>
|
||||
<table class="mdTable" cellpadding="2" cellspacing="0">
|
||||
<tr>
|
||||
<td class="mdRow">
|
||||
<table cellpadding="0" cellspacing="0" border="0">
|
||||
<tr>
|
||||
<td class="md" nowrap valign="top">case <a class="el" href="ui__browser_8php.html#a1">permissions</a> </td>
|
||||
</tr>
|
||||
</table>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
<table cellspacing="5" cellpadding="0" border="0">
|
||||
<tr>
|
||||
<td>
|
||||
|
||||
</td>
|
||||
<td>
|
||||
|
||||
<p>
|
||||
|
||||
<p>
|
||||
Definition at line <a class="el" href="ui__browser_8php-source.html#l00028">28</a> of file <a class="el" href="ui__browser_8php-source.html">ui_browser.php</a>.
|
||||
<p>
|
||||
Referenced by <a class="el" href="ui__handler_8class_8php-source.html#l00347">uiHandler::addPerm()</a>, and <a class="el" href="ui__handler_8class_8php-source.html#l00365">uiHandler::removePerm()</a>. </td>
|
||||
</tr>
|
||||
</table>
|
||||
<a class="anchor" name="a4" doxytag="ui_browser.php::search"></a><p>
|
||||
<table class="mdTable" cellpadding="2" cellspacing="0">
|
||||
<tr>
|
||||
<td class="mdRow">
|
||||
<table cellpadding="0" cellspacing="0" border="0">
|
||||
<tr>
|
||||
<td class="md" nowrap valign="top">case <a class="el" href="ui__browser_8php.html#a4">search</a> </td>
|
||||
</tr>
|
||||
</table>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
<table cellspacing="5" cellpadding="0" border="0">
|
||||
<tr>
|
||||
<td>
|
||||
|
||||
</td>
|
||||
<td>
|
||||
|
||||
<p>
|
||||
|
||||
<p>
|
||||
Definition at line <a class="el" href="ui__browser_8php-source.html#l00051">51</a> of file <a class="el" href="ui__browser_8php-source.html">ui_browser.php</a>.
|
||||
<p>
|
||||
Referenced by <a class="el" href="ui__browser_8class_8php-source.html#l00160">uiBrowser::getSearchForm()</a>, and <a class="el" href="ui__browser_8class_8php-source.html#l00330">uiBrowser::getSearchRes()</a>. </td>
|
||||
</tr>
|
||||
</table>
|
||||
<a class="anchor" name="a3" doxytag="ui_browser.php::sform"></a><p>
|
||||
<table class="mdTable" cellpadding="2" cellspacing="0">
|
||||
<tr>
|
||||
<td class="mdRow">
|
||||
<table cellpadding="0" cellspacing="0" border="0">
|
||||
<tr>
|
||||
<td class="md" nowrap valign="top">case <a class="el" href="ui__browser_8php.html#a3">sform</a> </td>
|
||||
</tr>
|
||||
</table>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
<table cellspacing="5" cellpadding="0" border="0">
|
||||
<tr>
|
||||
<td>
|
||||
|
||||
</td>
|
||||
<td>
|
||||
|
||||
<p>
|
||||
|
||||
<p>
|
||||
Definition at line <a class="el" href="ui__browser_8php-source.html#l00045">45</a> of file <a class="el" href="ui__browser_8php-source.html">ui_browser.php</a>. </td>
|
||||
</tr>
|
||||
</table>
|
||||
<a class="anchor" name="a5" doxytag="ui_browser.php::subjects"></a><p>
|
||||
<table class="mdTable" cellpadding="2" cellspacing="0">
|
||||
<tr>
|
||||
<td class="mdRow">
|
||||
<table cellpadding="0" cellspacing="0" border="0">
|
||||
<tr>
|
||||
<td class="md" nowrap valign="top">case <a class="el" href="ui__browser_8php.html#a5">subjects</a> </td>
|
||||
</tr>
|
||||
</table>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
<table cellspacing="5" cellpadding="0" border="0">
|
||||
<tr>
|
||||
<td>
|
||||
|
||||
</td>
|
||||
<td>
|
||||
|
||||
<p>
|
||||
|
||||
<p>
|
||||
Definition at line <a class="el" href="ui__browser_8php-source.html#l00061">61</a> of file <a class="el" href="ui__browser_8php-source.html">ui_browser.php</a>.
|
||||
<p>
|
||||
Referenced by <a class="el" href="ui__handler_8class_8php-source.html#l00266">uiHandler::addSubj()</a>, <a class="el" href="ui__handler_8class_8php-source.html#l00384">uiHandler::addSubj2Group()</a>, <a class="el" href="ui__browser_8class_8php-source.html#l00293">uiBrowser::getPermissions()</a>, <a class="el" href="ui__handler_8class_8php-source.html#l00313">uiHandler::passwd()</a>, <a class="el" href="ui__handler_8class_8php-source.html#l00290">uiHandler::removeSubj()</a>, and <a class="el" href="ui__handler_8class_8php-source.html#l00404">uiHandler::removeSubjFromGr()</a>. </td>
|
||||
</tr>
|
||||
</table>
|
||||
<a class="anchor" name="a13" doxytag="ui_browser.php::systemPrefs"></a><p>
|
||||
<table class="mdTable" cellpadding="2" cellspacing="0">
|
||||
<tr>
|
||||
<td class="mdRow">
|
||||
<table cellpadding="0" cellspacing="0" border="0">
|
||||
<tr>
|
||||
<td class="md" nowrap valign="top">case <a class="el" href="ui__handler_8php.html#a20">systemPrefs</a> </td>
|
||||
</tr>
|
||||
</table>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
<table cellspacing="5" cellpadding="0" border="0">
|
||||
<tr>
|
||||
<td>
|
||||
|
||||
</td>
|
||||
<td>
|
||||
|
||||
<p>
|
||||
|
||||
<p>
|
||||
Definition at line <a class="el" href="ui__browser_8php-source.html#l00101">101</a> of file <a class="el" href="ui__browser_8php-source.html">ui_browser.php</a>.
|
||||
<p>
|
||||
Referenced by <a class="el" href="ui__handler_8class_8php-source.html#l00418">uiHandler::storeSystemPrefs()</a>. </td>
|
||||
</tr>
|
||||
</table>
|
||||
<hr size="1"><address style="align: right;"><small>Generated on Wed Jan 12 16:22:49 2005 for LiveSupport - htmlUI module by
|
||||
<a href="http://www.doxygen.org/index.html">
|
||||
<img src="doxygen.png" alt="doxygen" align="middle" border="0"></a> 1.4.0 </small></address>
|
||||
</body>
|
||||
</html>
|
|
@ -1,54 +0,0 @@
|
|||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
|
||||
<html><head><meta http-equiv="Content-Type" content="text/html;charset=iso-8859-1">
|
||||
<title>LiveSupport&nbsp;-&nbsp;htmlUI&nbsp;module: ui_browser_init.php Source File</title>
|
||||
<link href="doxygen.css" rel="stylesheet" type="text/css">
|
||||
</head><body>
|
||||
<!-- Generated by Doxygen 1.4.0 -->
|
||||
<div class="qindex"><a class="qindex" href="index.html">Main Page</a> | <a class="qindex" href="hierarchy.html">Class Hierarchy</a> | <a class="qindex" href="classes.html">Alphabetical List</a> | <a class="qindex" href="annotated.html">Class List</a> | <a class="qindex" href="dirs.html">Directories</a> | <a class="qindex" href="files.html">File List</a> | <a class="qindex" href="functions.html">Class Members</a> | <a class="qindex" href="globals.html">File Members</a></div>
|
||||
<div class="nav">
|
||||
<a class="el" href="dir_000000.html">var</a></div>
|
||||
<h1>ui_browser_init.php</h1><a href="ui__browser__init_8php.html">Go to the documentation of this file.</a><div class="fragment"><pre class="fragment">00001 <?php
|
||||
00002 session_start();
|
||||
00003 require_once dirname(__FILE__).'/conf.php';
|
||||
00004 require_once dirname(__FILE__).'/ui_fmask.inc.php';
|
||||
00005
|
||||
00006 <span class="comment">// LS classes/functions</span>
|
||||
00007 require_once dirname(__FILE__).'/ui_base.inc.php';
|
||||
00008 require_once dirname(__FILE__).'/ui_browser.class.php';
|
||||
00009 require_once dirname(__FILE__).'/../../storageServer/var/GreenBox.php';
|
||||
00010
|
||||
00011 <span class="comment">// well known classes</span>
|
||||
00012 require_once dirname(__FILE__).'/html/Smarty/libs/Smarty.class.php';
|
||||
00013
|
||||
00014 require_once 'DB.php';
|
||||
00015 require_once 'HTML/QuickForm.php';
|
||||
00016 require_once 'HTML/QuickForm/Renderer/ArraySmarty.php';
|
||||
00017
|
||||
00018 <span class="preprocessor">#PEAR::setErrorHandling(PEAR_ERROR_TRIGGER, E_USER_WARNING);</span>
|
||||
00019 <span class="preprocessor"></span><span class="preprocessor">#PEAR::setErrorHandling(PEAR_ERROR_CALLBACK, 'errCallBack');</span>
|
||||
00020 <span class="preprocessor"></span>PEAR::setErrorHandling(PEAR_ERROR_RETURN);
|
||||
00021 <span class="preprocessor">#PEAR::setErrorHandling(PEAR_ERROR_PRINT);</span>
|
||||
00022 <span class="preprocessor"></span>
|
||||
00023 <span class="comment">// some global vars/objects</span>
|
||||
<a name="l00024"></a><a class="code" href="ui__browser__init_8php.html#a0">00024</a> <a class="code" href="ui__browser__init_8php.html#a0">$Smarty</a> = <span class="keyword">new</span> Smarty;
|
||||
00025 require_once dirname(__FILE__).'/SmartyExtensions.inc.php';
|
||||
<a name="l00026"></a><a class="code" href="ui__browser__init_8php.html#a1">00026</a> <a class="code" href="ui__browser__init_8php.html#a1">$uiBrowser</a> = <span class="keyword">new</span> <a class="code" href="classuiBrowser.html">uiBrowser</a>($config);
|
||||
<a name="l00027"></a><a class="code" href="ui__browser__init_8php.html#a2">00027</a> <a class="code" href="ui__browser__init_8php.html#a2">$uiBase</a> = <span class="keyword">new</span> <a class="code" href="classuiBase.html">uiBase</a>();
|
||||
00028
|
||||
00029 <span class="preprocessor">## some basic things</span>
|
||||
00030 <span class="preprocessor"></span><a class="code" href="ui__browser__init_8php.html#a0">$Smarty</a>->assign('alertMsg', $<a class="code" href="classuiBrowser.html">uiBrowser</a>->alertMsg());
|
||||
00031 <a class="code" href="ui__browser__init_8php.html#a0">$Smarty</a>->assign('GLOBALS', $GLOBALS); ## ??? should i <span class="keywordflow">do</span> <span class="keyword">this</span> ####
|
||||
00032
|
||||
00033 <span class="preprocessor">## retransfer incomplete formdata from SESSION to POST-data</span>
|
||||
00034 <span class="preprocessor"></span><span class="keywordflow">if</span>(is_array($_SESSION['retransferFormData'])){
|
||||
00035 foreach($_SESSION['retransferFormData'] as $k=>$v){
|
||||
00036 $_POST[$k] = $v;
|
||||
00037 }
|
||||
00038 unset($_SESSION['retransferFormData']);
|
||||
00039 }
|
||||
00040 ?>
|
||||
</pre></div><hr size="1"><address style="align: right;"><small>Generated on Wed Jan 12 16:22:49 2005 for LiveSupport - htmlUI module by
|
||||
<a href="http://www.doxygen.org/index.html">
|
||||
<img src="doxygen.png" alt="doxygen" align="middle" border="0"></a> 1.4.0 </small></address>
|
||||
</body>
|
||||
</html>
|
|
@ -1,104 +0,0 @@
|
|||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
|
||||
<html><head><meta http-equiv="Content-Type" content="text/html;charset=iso-8859-1">
|
||||
<title>LiveSupport&nbsp;-&nbsp;htmlUI&nbsp;module: ui_browser_init.php File Reference</title>
|
||||
<link href="doxygen.css" rel="stylesheet" type="text/css">
|
||||
</head><body>
|
||||
<!-- Generated by Doxygen 1.4.0 -->
|
||||
<div class="qindex"><a class="qindex" href="index.html">Main Page</a> | <a class="qindex" href="hierarchy.html">Class Hierarchy</a> | <a class="qindex" href="classes.html">Alphabetical List</a> | <a class="qindex" href="annotated.html">Class List</a> | <a class="qindex" href="dirs.html">Directories</a> | <a class="qindex" href="files.html">File List</a> | <a class="qindex" href="functions.html">Class Members</a> | <a class="qindex" href="globals.html">File Members</a></div>
|
||||
<div class="nav">
|
||||
<a class="el" href="dir_000000.html">var</a></div>
|
||||
<h1>ui_browser_init.php File Reference</h1>
|
||||
<p>
|
||||
<a href="ui__browser__init_8php-source.html">Go to the source code of this file.</a><table border="0" cellpadding="0" cellspacing="0">
|
||||
<tr><td></td></tr>
|
||||
<tr><td colspan="2"><br><h2>Variables</h2></td></tr>
|
||||
<tr><td class="memItemLeft" nowrap align="right" valign="top"> </td><td class="memItemRight" valign="bottom"><a class="el" href="ui__browser__init_8php.html#a0">$Smarty</a> = new Smarty</td></tr>
|
||||
|
||||
<tr><td class="memItemLeft" nowrap align="right" valign="top"> </td><td class="memItemRight" valign="bottom"><a class="el" href="ui__browser__init_8php.html#a1">$uiBrowser</a> = new <a class="el" href="classuiBrowser.html">uiBrowser</a>($config)</td></tr>
|
||||
|
||||
<tr><td class="memItemLeft" nowrap align="right" valign="top"> </td><td class="memItemRight" valign="bottom"><a class="el" href="ui__browser__init_8php.html#a2">$uiBase</a> = new <a class="el" href="classuiBase.html">uiBase</a>()</td></tr>
|
||||
|
||||
</table>
|
||||
<hr><h2>Variable Documentation</h2>
|
||||
<a class="anchor" name="a0" doxytag="ui_browser_init.php::$Smarty"></a><p>
|
||||
<table class="mdTable" cellpadding="2" cellspacing="0">
|
||||
<tr>
|
||||
<td class="mdRow">
|
||||
<table cellpadding="0" cellspacing="0" border="0">
|
||||
<tr>
|
||||
<td class="md" nowrap valign="top">$Smarty = new Smarty </td>
|
||||
</tr>
|
||||
</table>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
<table cellspacing="5" cellpadding="0" border="0">
|
||||
<tr>
|
||||
<td>
|
||||
|
||||
</td>
|
||||
<td>
|
||||
|
||||
<p>
|
||||
|
||||
<p>
|
||||
Definition at line <a class="el" href="ui__browser__init_8php-source.html#l00024">24</a> of file <a class="el" href="ui__browser__init_8php-source.html">ui_browser_init.php</a>. </td>
|
||||
</tr>
|
||||
</table>
|
||||
<a class="anchor" name="a2" doxytag="ui_browser_init.php::$uiBase"></a><p>
|
||||
<table class="mdTable" cellpadding="2" cellspacing="0">
|
||||
<tr>
|
||||
<td class="mdRow">
|
||||
<table cellpadding="0" cellspacing="0" border="0">
|
||||
<tr>
|
||||
<td class="md" nowrap valign="top">$<a class="el" href="classuiBase.html">uiBase</a> = new <a class="el" href="classuiBase.html">uiBase</a>() </td>
|
||||
</tr>
|
||||
</table>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
<table cellspacing="5" cellpadding="0" border="0">
|
||||
<tr>
|
||||
<td>
|
||||
|
||||
</td>
|
||||
<td>
|
||||
|
||||
<p>
|
||||
|
||||
<p>
|
||||
Definition at line <a class="el" href="ui__browser__init_8php-source.html#l00027">27</a> of file <a class="el" href="ui__browser__init_8php-source.html">ui_browser_init.php</a>. </td>
|
||||
</tr>
|
||||
</table>
|
||||
<a class="anchor" name="a1" doxytag="ui_browser_init.php::$uiBrowser"></a><p>
|
||||
<table class="mdTable" cellpadding="2" cellspacing="0">
|
||||
<tr>
|
||||
<td class="mdRow">
|
||||
<table cellpadding="0" cellspacing="0" border="0">
|
||||
<tr>
|
||||
<td class="md" nowrap valign="top">$<a class="el" href="classuiBrowser.html">uiBrowser</a> = new <a class="el" href="classuiBrowser.html">uiBrowser</a>($config) </td>
|
||||
</tr>
|
||||
</table>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
<table cellspacing="5" cellpadding="0" border="0">
|
||||
<tr>
|
||||
<td>
|
||||
|
||||
</td>
|
||||
<td>
|
||||
|
||||
<p>
|
||||
|
||||
<p>
|
||||
Definition at line <a class="el" href="ui__browser__init_8php-source.html#l00026">26</a> of file <a class="el" href="ui__browser__init_8php-source.html">ui_browser_init.php</a>.
|
||||
<p>
|
||||
Referenced by <a class="el" href="SmartyExtensions_8inc_8php-source.html#l00075">S_tra()</a>. </td>
|
||||
</tr>
|
||||
</table>
|
||||
<hr size="1"><address style="align: right;"><small>Generated on Wed Jan 12 16:22:49 2005 for LiveSupport - htmlUI module by
|
||||
<a href="http://www.doxygen.org/index.html">
|
||||
<img src="doxygen.png" alt="doxygen" align="middle" border="0"></a> 1.4.0 </small></address>
|
||||
</body>
|
||||
</html>
|
|
@ -1,302 +0,0 @@
|
|||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
|
||||
<html><head><meta http-equiv="Content-Type" content="text/html;charset=iso-8859-1">
|
||||
<title>LiveSupport&nbsp;-&nbsp;htmlUI&nbsp;module: ui_fmask.inc.php Source File</title>
|
||||
<link href="doxygen.css" rel="stylesheet" type="text/css">
|
||||
</head><body>
|
||||
<!-- Generated by Doxygen 1.4.0 -->
|
||||
<div class="qindex"><a class="qindex" href="index.html">Main Page</a> | <a class="qindex" href="hierarchy.html">Class Hierarchy</a> | <a class="qindex" href="classes.html">Alphabetical List</a> | <a class="qindex" href="annotated.html">Class List</a> | <a class="qindex" href="dirs.html">Directories</a> | <a class="qindex" href="files.html">File List</a> | <a class="qindex" href="functions.html">Class Members</a> | <a class="qindex" href="globals.html">File Members</a></div>
|
||||
<div class="nav">
|
||||
<a class="el" href="dir_000000.html">var</a></div>
|
||||
<h1>ui_fmask.inc.php</h1><a href="ui__fmask_8inc_8php.html">Go to the documentation of this file.</a><div class="fragment"><pre class="fragment">00001 <?php
|
||||
<a name="l00002"></a><a class="code" href="ui__fmask_8inc_8php.html#a0">00002</a> <a class="code" href="ui__fmask_8inc_8php.html#a0">$ui_fmask</a> = array(
|
||||
00003 <span class="comment">/* ===================== list of system preferences which can be adjusted */</span>
|
||||
00004 'systemPrefs' => array(
|
||||
00005 array(
|
||||
00006 'element' => 'basics',
|
||||
00007 'type' => 'header',
|
||||
00008 'label' => 'Basic Settings',
|
||||
00009 ),
|
||||
00010 array(
|
||||
00011 'element' => 'maxfilesize',
|
||||
00012 'type' => 'text',
|
||||
00013 'label' => 'Maximum File Size <span class="keywordflow">for</span> Upload',
|
||||
00014 'required' =>TRUE,
|
||||
00015 ),
|
||||
00016 array(
|
||||
00017 'rule' => 'numeric',
|
||||
00018 'element' => 'maxfilesize',
|
||||
00019 'errormsg' => 'Value <span class="keywordflow">for</span> Maximum File Size must be numeric'
|
||||
00020 ),
|
||||
00021 array(
|
||||
00022 'element' => 'stationname',
|
||||
00023 'type' => 'text',
|
||||
00024 'label' => 'Staion Name',
|
||||
00025 'required'=>TRUE
|
||||
00026 ),
|
||||
00027 array(
|
||||
00028 'element' => 'stationurl',
|
||||
00029 'type' => 'text',
|
||||
00030 'label' => 'Station URL',
|
||||
00031 'required' =>TRUE
|
||||
00032 ),
|
||||
00033 array(
|
||||
00034 'element' => 'stationurl2',
|
||||
00035 'type' => 'text',
|
||||
00036 'label' => 'Station URL2',
|
||||
00037 'required' =>TRUE
|
||||
00038 ),
|
||||
00039 array(
|
||||
00040 'element' => 'upload',
|
||||
00041 'type' => 'header',
|
||||
00042 'label' => 'Upload'
|
||||
00043 ),
|
||||
00044 array(
|
||||
00045 'element' => 'stationlogo',
|
||||
00046 'type' => 'file',
|
||||
00047 'label' => 'Station Logo',
|
||||
00048 'required' =>FALSE
|
||||
00049 ),
|
||||
00050 array(
|
||||
00051 'element' =>'submit',
|
||||
00052 'type' =>'submit',
|
||||
00053 'label' =>'Submit'
|
||||
00054 )
|
||||
00055 ),
|
||||
00056
|
||||
00057 <span class="comment">/* =========================================================== Matadata-Mask */</span>
|
||||
00058 'mData' => array(
|
||||
00059 array(
|
||||
00060 'element' => 'title',
|
||||
00061 'type' => 'text',
|
||||
00062 'label' => 'Title',
|
||||
00063 'required'=> TRUE,
|
||||
00064 'groupit' => TRUE
|
||||
00065 ),
|
||||
00066 array(
|
||||
00067 'element' =>'alternative',
|
||||
00068 'type' =>'text',
|
||||
00069 'label' =>'Alternative Title',
|
||||
00070 'required'=>FALSE
|
||||
00071 ),
|
||||
00072 array(
|
||||
00073 'element' =>'description',
|
||||
00074 'type' =>'textarea',
|
||||
00075 'label' =>'Description',
|
||||
00076 'required'=>TRUE
|
||||
00077 ),
|
||||
00078 array(
|
||||
00079 'element' =>'genre',
|
||||
00080 'type' =>'select',
|
||||
00081 'label' =>'Genre(s)',
|
||||
00082 'required'=>TRUE,
|
||||
00083 'multiple'=>TRUE,
|
||||
00084 'options' =>array(
|
||||
00085 'rock' =>'Rock',
|
||||
00086 'blues' =>'Blues',
|
||||
00087 'jazz' =>'Jazz',
|
||||
00088 'pop' =>'Pop',
|
||||
00089 'house' =>'House',
|
||||
00090 'industrial'=>'Industrial',
|
||||
00091 )
|
||||
00092 ),
|
||||
00093 array(
|
||||
00094 'element' =>'decade',
|
||||
00095 'type' =>'select',
|
||||
00096 'label' =>'Decade',
|
||||
00097 'required'=>FALSE,
|
||||
00098 'multiple'=>FALSE,
|
||||
00099 'options' =>array(
|
||||
00100 '1960' =>'60\<span class="charliteral">'s'</span>,
|
||||
00101 '1970' =>'70\<span class="charliteral">'s'</span>,
|
||||
00102 '1980' =>'80\<span class="charliteral">'s'</span>,
|
||||
00103 '1990' =>'90\<span class="charliteral">'s'</span>
|
||||
00104 )
|
||||
00105 ),
|
||||
00106 array(
|
||||
00107 'element' =>'licence',
|
||||
00108 'type' =>'radio',
|
||||
00109 'label' =>'Licence exists',
|
||||
00110 'required' =>TRUE,
|
||||
00111 'options' =>array(
|
||||
00112 'yes' =>'Yes',
|
||||
00113 'no' =>'No'
|
||||
00114 )
|
||||
00115 ),
|
||||
00116 array(
|
||||
00117 'group' =>'licencegrp',
|
||||
00118 'elements' =>array('licence'),
|
||||
00119 'label' =>'grplkabel'
|
||||
00120 ),
|
||||
00121 array(
|
||||
00122 'element' =>'full_processed',
|
||||
00123 'type' =>'checkbox',
|
||||
00124 'label' =>'Full processed',
|
||||
00125 'required' =>FALSE
|
||||
00126 ),
|
||||
00127 array(
|
||||
00128 'element' =>'reset',
|
||||
00129 'type' =>'reset',
|
||||
00130 'label' =>'Reset',
|
||||
00131 'groupit' =>TRUE
|
||||
00132 ),
|
||||
00133 array(
|
||||
00134 'element' =>'submit',
|
||||
00135 'type' =>'submit',
|
||||
00136 'label' =>'Submit',
|
||||
00137 'groupit' =>TRUE
|
||||
00138 ),
|
||||
00139 array(
|
||||
00140 'group' => array('reset', 'submit'),
|
||||
00141 'name' => NULL,
|
||||
00142 'label' => NULL,
|
||||
00143 'seperator' => '&nbsp;&nbsp;',
|
||||
00144 'appendName'=> NULL
|
||||
00145 )
|
||||
00146 ),
|
||||
00147 'addUser' => array(
|
||||
00148 array(
|
||||
00149 'element' => 'act',
|
||||
00150 'type' => 'hidden',
|
||||
00151 'constant' => 'addUser'
|
||||
00152 ),
|
||||
00153 array(
|
||||
00154 'element' => 'login',
|
||||
00155 'type' => 'text',
|
||||
00156 'label' => 'Username',
|
||||
00157 'required' => TRUE
|
||||
00158 ),
|
||||
00159 array(
|
||||
00160 'element' =>'pass',
|
||||
00161 'type' =>'password',
|
||||
00162 'label' =>'Users Password',
|
||||
00163 'required' =>TRUE
|
||||
00164 ),
|
||||
00165 array(
|
||||
00166 'element' =>'pass2',
|
||||
00167 'type' =>'password',
|
||||
00168 'label' =>'Repeat Password',
|
||||
00169 'required' =>TRUE
|
||||
00170 ),
|
||||
00171 array(
|
||||
00172 'rule' =>'compare',
|
||||
00173 'element' =>array('pass<span class="charliteral">','</span>pass2'),
|
||||
00174 'errormsg' =>'Passwords didn´t match'
|
||||
00175 ),
|
||||
00176 array(
|
||||
00177 'element' =>'submit',
|
||||
00178 'type' =>'submit',
|
||||
00179 'label' =>'Submit'
|
||||
00180 )
|
||||
00181 ),
|
||||
00182 'addGroup' => array(
|
||||
00183 array(
|
||||
00184 'element' => 'act',
|
||||
00185 'type' => 'hidden',
|
||||
00186 'constant' => 'addGroup'
|
||||
00187 ),
|
||||
00188 array(
|
||||
00189 'element' => 'login',
|
||||
00190 'type' => 'text',
|
||||
00191 'label' => 'Group Name',
|
||||
00192 'required' => TRUE
|
||||
00193 ),
|
||||
00194 array(
|
||||
00195 'element' =>'submit',
|
||||
00196 'type' =>'submit',
|
||||
00197 'label' =>'Submit'
|
||||
00198 )
|
||||
00199 ),
|
||||
00200 'login' => array(
|
||||
00201 array(
|
||||
00202 'element' => 'act',
|
||||
00203 'type' => 'hidden',
|
||||
00204 'constant' => 'login'
|
||||
00205 ),
|
||||
00206 array(
|
||||
00207 'element' => 'login',
|
||||
00208 'type' => 'text',
|
||||
00209 'label' => 'Username',
|
||||
00210 'required' => TRUE
|
||||
00211 ),
|
||||
00212 array(
|
||||
00213 'element' => 'pass',
|
||||
00214 'type' => 'password',
|
||||
00215 'label' => 'Password',
|
||||
00216 'required' => TRUE
|
||||
00217 ),
|
||||
00218 array(
|
||||
00219 'element' => 'submit',
|
||||
00220 'type' => 'submit',
|
||||
00221 'label' => 'Submit'
|
||||
00222 )
|
||||
00223 ),
|
||||
00224
|
||||
00225
|
||||
00226 #$form->setConstants(array('<span class="keywordtype">id</span>'=>$<span class="keywordtype">id</span>));
|
||||
00227 <span class="preprocessor"> #$form->addElement('hidden', 'id');</span>
|
||||
00228 <span class="preprocessor"></span>
|
||||
00229 <span class="preprocessor"> #$form->addRule('filename', $this->tra('enter a Filename'), 'required', null, 'client');</span>
|
||||
00230 <span class="preprocessor"></span><span class="preprocessor"> #$form->addRule('mediafile', $this->tra('select a Media-file'), 'required', null, 'client');</span>
|
||||
00231 <span class="preprocessor"></span><span class="preprocessor"> #$form->addRule('mdatafile', $this->tra('select a Metadata-file'), 'required', null, 'client');</span>
|
||||
00232 <span class="preprocessor"></span>
|
||||
00233 '<a class="code" href="ui__handler_8php.html#a2">upload</a>' => array(
|
||||
00234 array(
|
||||
00235 'element' => 'act',
|
||||
00236 'type' => 'hidden',
|
||||
00237 'constant' => 'upload'
|
||||
00238 ),
|
||||
00239 array(
|
||||
00240 'element' => 'MAX_FILE_SIZE',
|
||||
00241 'type' => 'hidden',
|
||||
00242 'constant' => UI_INPUT_GBOBJECT_MAXFILESIZE
|
||||
00243 ),
|
||||
00244 array(
|
||||
00245 'element' => 'filename',
|
||||
00246 'type' => 'text',
|
||||
00247 'label' => 'Filename',
|
||||
00248 'required' => TRUE
|
||||
00249 ),
|
||||
00250 array(
|
||||
00251 'element' => 'mediafile',
|
||||
00252 'type' => 'file',
|
||||
00253 'label' => 'Mediafile',
|
||||
00254 'required' => TRUE,
|
||||
00255 'errormsg' => 'please select Media file'
|
||||
00256 ),
|
||||
00257 array(
|
||||
00258 'element' => 'mdatafile',
|
||||
00259 'type' => 'file',
|
||||
00260 'label' => 'Metadata',
|
||||
00261 'required' => TRUE,
|
||||
00262 'errormsg' => 'please select Metadata file'
|
||||
00263 ),
|
||||
00264 array(
|
||||
00265 'element' => 'submit',
|
||||
00266 'type' => 'submit',
|
||||
00267 'label' => 'Submit'
|
||||
00268 )
|
||||
00269 ),
|
||||
00270 '<a class="code" href="ui__browser_8php.html#a4">search</a>' => array(
|
||||
00271 array(
|
||||
00272 'element' => 'act',
|
||||
00273 'type' => 'hidden',
|
||||
00274 'constant' => 'search'
|
||||
00275 ),
|
||||
00276 array(
|
||||
00277 'element' => 'search',
|
||||
00278 'type' => 'text',
|
||||
00279 'label' => 'Searchstring',
|
||||
00280 'required' => TRUE
|
||||
00281 ),
|
||||
00282 array(
|
||||
00283 'element' => 'submit',
|
||||
00284 'type' => 'submit',
|
||||
00285 'label' => 'Submit'
|
||||
00286 )
|
||||
00287 )
|
||||
00288 );
|
||||
</pre></div><hr size="1"><address style="align: right;"><small>Generated on Wed Jan 12 16:22:49 2005 for LiveSupport - htmlUI module by
|
||||
<a href="http://www.doxygen.org/index.html">
|
||||
<img src="doxygen.png" alt="doxygen" align="middle" border="0"></a> 1.4.0 </small></address>
|
||||
</body>
|
||||
</html>
|
|
@ -1,48 +0,0 @@
|
|||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
|
||||
<html><head><meta http-equiv="Content-Type" content="text/html;charset=iso-8859-1">
|
||||
<title>LiveSupport&nbsp;-&nbsp;htmlUI&nbsp;module: ui_fmask.inc.php File Reference</title>
|
||||
<link href="doxygen.css" rel="stylesheet" type="text/css">
|
||||
</head><body>
|
||||
<!-- Generated by Doxygen 1.4.0 -->
|
||||
<div class="qindex"><a class="qindex" href="index.html">Main Page</a> | <a class="qindex" href="hierarchy.html">Class Hierarchy</a> | <a class="qindex" href="classes.html">Alphabetical List</a> | <a class="qindex" href="annotated.html">Class List</a> | <a class="qindex" href="dirs.html">Directories</a> | <a class="qindex" href="files.html">File List</a> | <a class="qindex" href="functions.html">Class Members</a> | <a class="qindex" href="globals.html">File Members</a></div>
|
||||
<div class="nav">
|
||||
<a class="el" href="dir_000000.html">var</a></div>
|
||||
<h1>ui_fmask.inc.php File Reference</h1>
|
||||
<p>
|
||||
<a href="ui__fmask_8inc_8php-source.html">Go to the source code of this file.</a><table border="0" cellpadding="0" cellspacing="0">
|
||||
<tr><td></td></tr>
|
||||
<tr><td colspan="2"><br><h2>Variables</h2></td></tr>
|
||||
<tr><td class="memItemLeft" nowrap align="right" valign="top"> </td><td class="memItemRight" valign="bottom"><a class="el" href="ui__fmask_8inc_8php.html#a0">$ui_fmask</a></td></tr>
|
||||
|
||||
</table>
|
||||
<hr><h2>Variable Documentation</h2>
|
||||
<a class="anchor" name="a0" doxytag="ui_fmask.inc.php::$ui_fmask"></a><p>
|
||||
<table class="mdTable" cellpadding="2" cellspacing="0">
|
||||
<tr>
|
||||
<td class="mdRow">
|
||||
<table cellpadding="0" cellspacing="0" border="0">
|
||||
<tr>
|
||||
<td class="md" nowrap valign="top">$ui_fmask </td>
|
||||
</tr>
|
||||
</table>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
<table cellspacing="5" cellpadding="0" border="0">
|
||||
<tr>
|
||||
<td>
|
||||
|
||||
</td>
|
||||
<td>
|
||||
|
||||
<p>
|
||||
|
||||
<p>
|
||||
Definition at line <a class="el" href="ui__fmask_8inc_8php-source.html#l00002">2</a> of file <a class="el" href="ui__fmask_8inc_8php-source.html">ui_fmask.inc.php</a>. </td>
|
||||
</tr>
|
||||
</table>
|
||||
<hr size="1"><address style="align: right;"><small>Generated on Wed Jan 12 16:22:49 2005 for LiveSupport - htmlUI module by
|
||||
<a href="http://www.doxygen.org/index.html">
|
||||
<img src="doxygen.png" alt="doxygen" align="middle" border="0"></a> 1.4.0 </small></address>
|
||||
</body>
|
||||
</html>
|
|
@ -1,312 +0,0 @@
|
|||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
|
||||
<html><head><meta http-equiv="Content-Type" content="text/html;charset=iso-8859-1">
|
||||
<title>LiveSupport&nbsp;-&nbsp;htmlUI&nbsp;module: ui_handler.class.php Source File</title>
|
||||
<link href="doxygen.css" rel="stylesheet" type="text/css">
|
||||
</head><body>
|
||||
<!-- Generated by Doxygen 1.4.0 -->
|
||||
<div class="qindex"><a class="qindex" href="index.html">Main Page</a> | <a class="qindex" href="hierarchy.html">Class Hierarchy</a> | <a class="qindex" href="classes.html">Alphabetical List</a> | <a class="qindex" href="annotated.html">Class List</a> | <a class="qindex" href="dirs.html">Directories</a> | <a class="qindex" href="files.html">File List</a> | <a class="qindex" href="functions.html">Class Members</a> | <a class="qindex" href="globals.html">File Members</a></div>
|
||||
<div class="nav">
|
||||
<a class="el" href="dir_000000.html">var</a></div>
|
||||
<h1>ui_handler.class.php</h1><a href="ui__handler_8class_8php.html">Go to the documentation of this file.</a><div class="fragment"><pre class="fragment">00001 <?php
|
||||
<a name="l00007"></a><a class="code" href="classuiHandler.html">00007</a> <span class="keyword">class </span><a class="code" href="classuiHandler.html">uiHandler</a> <span class="keyword">extends</span> <a class="code" href="classuiBase.html">uiBase</a> {
|
||||
<a name="l00008"></a><a class="code" href="classuiHandler.html#o0">00008</a> var <a class="code" href="classuiHandler.html#o0">$redirUrl</a>;
|
||||
<a name="l00009"></a><a class="code" href="classuiHandler.html#o1">00009</a> var <a class="code" href="classuiHandler.html#o1">$alertMsg</a>;
|
||||
00010
|
||||
<a name="l00011"></a><a class="code" href="classuiHandler.html#a0">00011</a> function <a class="code" href="classuiHandler.html#a0">uiHandler</a>($config)
|
||||
00012 {
|
||||
00013 $dbc = DB::connect($config['dsn'], TRUE);
|
||||
00014 $dbc->setFetchMode(DB_FETCHMODE_ASSOC);
|
||||
00015 $this->gb = &<span class="keyword">new</span> GreenBox(&$dbc, $config);
|
||||
00016 $this-><span class="keywordtype">id</span> = (!<a class="code" href="ui__handler_8php.html#a11">$_REQUEST</a>['<span class="keywordtype">id</span>'] ? $this->gb->storId : <a class="code" href="ui__handler_8php.html#a11">$_REQUEST</a>['<span class="keywordtype">id</span>']);
|
||||
00017 $this->sessid = <a class="code" href="ui__handler_8php.html#a11">$_REQUEST</a>[<a class="code" href="conf_8php.html#a0">$config</a>['authCookieName']];
|
||||
00018 $this->userid = $this->gb->getSessUserId($this->sessid);
|
||||
00019 $this-><a class="code" href="classuiHandler.html#a1">login</a> = $this->gb->getSessLogin ($this->sessid);
|
||||
00020 $this->config = <a class="code" href="conf_8php.html#a0">$config</a>;
|
||||
00021 }
|
||||
00022
|
||||
00023 <span class="comment">// --- authentication ---</span>
|
||||
<a name="l00033"></a><a class="code" href="classuiHandler.html#a1">00033</a> <span class="comment"></span> function <a class="code" href="classuiHandler.html#a1">login</a>(&$formdata, &$mask)
|
||||
00034 { $formdata['xxx'] = 'yyy';
|
||||
00035 $this->redirUrl = <a class="code" href="conf_8php.html#a2">UI_BROWSER</a>;
|
||||
00036 <span class="keywordflow">if</span> ($this->_validateForm($formdata, $mask)) {
|
||||
00037 $sessid = $this->gb->login($formdata['<a class="code" href="classuiHandler.html#a1">login</a>'], $formdata['pass']);
|
||||
00038 <span class="keywordflow">if</span>($sessid && !PEAR::isError($sessid)){
|
||||
00039 setcookie($this->config['authCookieName'], $sessid);
|
||||
00040
|
||||
00041 $fid = $this->gb->getObjId($formdata['login'], $this->gb->storId);
|
||||
00042 <span class="keywordflow">if</span>(!PEAR::isError($fid)) $this->redirUrl.=<span class="stringliteral">"?id=$fid"</span>;
|
||||
00043 }<span class="keywordflow">else</span>{
|
||||
00044 $this->alertMsg = 'Login failed.';
|
||||
00045 }
|
||||
00046 }
|
||||
00047
|
||||
00048 }
|
||||
00049
|
||||
<a name="l00056"></a><a class="code" href="classuiHandler.html#a2">00056</a> function <a class="code" href="classuiHandler.html#a2">logout</a>()
|
||||
00057 {
|
||||
00058 $this->gb->logout($this->sessid);
|
||||
00059 setcookie($this->config['authCookieName'], '');
|
||||
00060 $this->redirUrl = <a class="code" href="conf_8php.html#a2">UI_BROWSER</a>;
|
||||
00061 }
|
||||
00062
|
||||
00063 <span class="comment">// --- files ---</span>
|
||||
<a name="l00074"></a><a class="code" href="classuiHandler.html#a3">00074</a> <span class="comment"></span> function <a class="code" href="classuiHandler.html#a3">upload</a>(&$formdata, $<span class="keywordtype">id</span>, &$mask)
|
||||
00075 {
|
||||
00076 <span class="keywordflow">if</span> ($this->_validateForm($formdata, $mask)) {
|
||||
00077 $tmpgunid = md5(
|
||||
00078 microtime().$_SERVER['SERVER_ADDR'].rand().<span class="stringliteral">"org.mdlf.livesupport"</span>
|
||||
00079 );
|
||||
00080 $ntmp = $this->gb->bufferDir.<span class="charliteral">'/'</span>.$tmpgunid;
|
||||
00081 <span class="preprocessor"> # $ntmp = tempnam(""{$gb->bufferDir}", 'gbTmp_');</span>
|
||||
00082 <span class="preprocessor"></span> $mdtmp = <span class="stringliteral">""</span>;
|
||||
00083 move_uploaded_file($formdata['mediafile']['tmp_name'], $ntmp);
|
||||
00084 chmod($ntmp, 0664);
|
||||
00085 <span class="keywordflow">if</span>($formdata['mdatafile']['tmp_name']){
|
||||
00086 $mdtmp = <span class="stringliteral">"$ntmp.xml"</span>;
|
||||
00087 <span class="keywordflow">if</span>(move_uploaded_file($formdata['mdatafile']['tmp_name'], $mdtmp)){
|
||||
00088 chmod($mdtmp, 0664);
|
||||
00089 }
|
||||
00090 }
|
||||
00091 $r = $this->gb->putFile($<span class="keywordtype">id</span>, $formdata['filename'], $ntmp, $mdtmp, $this->sessid);
|
||||
00092 <span class="keywordflow">if</span>(PEAR::isError($r)) $this->alertMsg = $r->getMessage();
|
||||
00093 <span class="keywordflow">else</span>{
|
||||
00094 <span class="preprocessor"> # $gb->updateMetadataDB($gb->_pathFromId($r), $mdata, $sessid);</span>
|
||||
00095 <span class="preprocessor"></span> @unlink($ntmp);
|
||||
00096 @unlink($mdtmp);
|
||||
00097 }
|
||||
00098 $this->redirUrl = <a class="code" href="conf_8php.html#a2">UI_BROWSER</a>.<span class="stringliteral">"?id="</span>.$id;
|
||||
00099 } <span class="keywordflow">else</span> {
|
||||
00100 $this->redirUrl = <a class="code" href="conf_8php.html#a2">UI_BROWSER</a>.<span class="stringliteral">"?act=newfile&id="</span>.$id;
|
||||
00101 }
|
||||
00102 }
|
||||
00103
|
||||
<a name="l00112"></a><a class="code" href="classuiHandler.html#a4">00112</a> function <a class="code" href="classuiHandler.html#a4">newFolder</a>($newname, $<span class="keywordtype">id</span>)
|
||||
00113 {
|
||||
00114 $r = $this->gb->createFolder($<span class="keywordtype">id</span>, $newname, $this->sessid);
|
||||
00115 <span class="keywordflow">if</span>(PEAR::isError($r)) $this->alertMsg = $r->getMessage();
|
||||
00116 $this->redirUrl = <a class="code" href="conf_8php.html#a2">UI_BROWSER</a>.'?<span class="keywordtype">id</span>='.$id;
|
||||
00117 }
|
||||
00118
|
||||
<a name="l00127"></a><a class="code" href="classuiHandler.html#a5">00127</a> function <a class="code" href="classuiHandler.html#a5">rename</a>($newname, $<span class="keywordtype">id</span>)
|
||||
00128 {
|
||||
00129 $parid = $this->gb->getparent($this->id);
|
||||
00130 $r = $this->gb->renameFile($<span class="keywordtype">id</span>, $newname, $this->sessid);
|
||||
00131 <span class="keywordflow">if</span>(PEAR::isError($r)) $this->alertMsg = $r->getMessage();
|
||||
00132 $this->redirUrl = <a class="code" href="conf_8php.html#a2">UI_BROWSER</a>.<span class="stringliteral">"?id=$parid"</span>;
|
||||
00133 }
|
||||
00134
|
||||
<a name="l00144"></a><a class="code" href="classuiHandler.html#a6">00144</a> function <a class="code" href="classuiHandler.html#a6">move</a>($newPath, $<span class="keywordtype">id</span>)
|
||||
00145 {
|
||||
00146 $newPath = urlencode($newPath);
|
||||
00147 $did = $this->gb->getObjIdFromRelPath($<span class="keywordtype">id</span>, $newPath);
|
||||
00148 $parid = $this->gb->getparent($<span class="keywordtype">id</span>);
|
||||
00149 $r = $this->gb->moveFile($<span class="keywordtype">id</span>, $did, $this->sessid);
|
||||
00150 <span class="keywordflow">if</span>(PEAR::isError($r)){
|
||||
00151 $this->alertMsg = $r->getMessage();
|
||||
00152 $this->redirUrl = <a class="code" href="conf_8php.html#a2">UI_BROWSER</a>.<span class="stringliteral">"?id=$parid"</span>;
|
||||
00153 }
|
||||
00154 <span class="keywordflow">else</span> $this->redirUrl = <a class="code" href="conf_8php.html#a2">UI_BROWSER</a>.<span class="stringliteral">"?id=$did"</span>;
|
||||
00155 }
|
||||
00156
|
||||
<a name="l00166"></a><a class="code" href="classuiHandler.html#a7">00166</a> function <a class="code" href="classuiHandler.html#a7">copy</a>($newPath, $<span class="keywordtype">id</span>)
|
||||
00167 {
|
||||
00168 $newPath = urldecode($newPath);
|
||||
00169 $did = $this->gb->getObjIdFromRelPath($<span class="keywordtype">id</span>, $newPath);
|
||||
00170 $parid = $this->gb->getparent($<span class="keywordtype">id</span>);
|
||||
00171 $r = $this->gb->copyFile($<span class="keywordtype">id</span>, $did, $this->sessid);
|
||||
00172 <span class="keywordflow">if</span>(PEAR::isError($r)){
|
||||
00173 $this->alertMsg = $r->getMessage();
|
||||
00174 $this->redirUrl = <a class="code" href="conf_8php.html#a2">UI_BROWSER</a>.<span class="stringliteral">"?id=$parid"</span>;
|
||||
00175 }
|
||||
00176 <span class="keywordflow">else</span> $this->redirUrl = <a class="code" href="conf_8php.html#a2">UI_BROWSER</a>.<span class="stringliteral">"?id=$did"</span>;
|
||||
00177 }
|
||||
00178
|
||||
<a name="l00187"></a><a class="code" href="classuiHandler.html#a8">00187</a> function <span class="keyword">delete</span>($id, $delOverride=FALSE)
|
||||
00188 {
|
||||
00189 $parid = $this->gb->getparent($<span class="keywordtype">id</span>);
|
||||
00190
|
||||
00191 <span class="preprocessor"> ## add emtyness-test here ###</span>
|
||||
00192 <span class="preprocessor"></span> <span class="keywordflow">if</span> (!($delOverride==$<span class="keywordtype">id</span>) && (count($this->gb->getObjType($<span class="keywordtype">id</span>)=='Folder'?
|
||||
00193 $this->gb->listFolder($<span class="keywordtype">id</span>, $this->sessid):NULL))) {
|
||||
00194 $this->alertMsg = $this-><a class="code" href="classuiBase.html#a0">tra</a>(<span class="stringliteral">"Folder is not empty. You can override this protection by clicking DEL again"</span>);
|
||||
00195 $this->redirUrl = <a class="code" href="conf_8php.html#a2">UI_BROWSER</a>.<span class="stringliteral">"?id=$parid&delOverride=$id"</span>;
|
||||
00196 <span class="keywordflow">return</span>;
|
||||
00197 }
|
||||
00198 <span class="preprocessor"> #############################</span>
|
||||
00199 <span class="preprocessor"></span>
|
||||
00200 $r = $this->gb->deleteFile($<span class="keywordtype">id</span>, $this->sessid);
|
||||
00201 <span class="keywordflow">if</span>(PEAR::isError($r)) $this->alertMsg = $r->getMessage();
|
||||
00202 $this->redirUrl = <a class="code" href="conf_8php.html#a2">UI_BROWSER</a>.<span class="stringliteral">"?id=$parid"</span>;
|
||||
00203 }
|
||||
00204
|
||||
00205
|
||||
<a name="l00215"></a><a class="code" href="classuiHandler.html#a9">00215</a> function <a class="code" href="classuiHandler.html#a9">getFile</a>($<span class="keywordtype">id</span>)
|
||||
00216 {
|
||||
00217 $r = $this->gb->access($<span class="keywordtype">id</span>, $this->sessid);
|
||||
00218 <span class="keywordflow">if</span>(PEAR::isError($r)) $this->alertMsg = $r->getMessage();
|
||||
00219 <span class="keywordflow">else</span> echo $r;
|
||||
00220 }
|
||||
00221
|
||||
<a name="l00229"></a><a class="code" href="classuiHandler.html#a10">00229</a> function <a class="code" href="classuiHandler.html#a10">getMdata</a>($<span class="keywordtype">id</span>)
|
||||
00230 {
|
||||
00231 header(<span class="stringliteral">"Content-type: text/xml"</span>);
|
||||
00232 $r = $this->gb->getMdata($<span class="keywordtype">id</span>, $this->sessid);
|
||||
00233 print_r($r);
|
||||
00234 }
|
||||
00235
|
||||
<a name="l00244"></a><a class="code" href="classuiHandler.html#a11">00244</a> function <a class="code" href="classuiHandler.html#a11">getInfo</a>($<span class="keywordtype">id</span>)
|
||||
00245 {
|
||||
00246 header(<span class="stringliteral">"Content-type: text/plain"</span>);
|
||||
00247 $ia = $this->gb->analyzeFile($<span class="keywordtype">id</span>, $this->sessid);
|
||||
00248 echo<span class="stringliteral">"fileformat: {$ia['fileformat']}\n"</span>;
|
||||
00249 echo<span class="stringliteral">"channels: {$ia['audio']['channels']}\n"</span>;
|
||||
00250 echo<span class="stringliteral">"sample_rate: {$ia['audio']['sample_rate']}\n"</span>;
|
||||
00251 echo<span class="stringliteral">"bits_per_sample: {$ia['audio']['bits_per_sample']}\n"</span>;
|
||||
00252 echo<span class="stringliteral">"channelmode: {$ia['audio']['channelmode']}\n"</span>;
|
||||
00253 echo<span class="stringliteral">"title: {$ia['id3v1']['title']}\n"</span>;
|
||||
00254 echo<span class="stringliteral">"artist: {$ia['id3v1']['artist']}\n"</span>;
|
||||
00255 echo<span class="stringliteral">"comment: {$ia['id3v1']['comment']}\n"</span>;
|
||||
00256 }
|
||||
00257
|
||||
00258 <span class="comment">// --- subjs ----</span>
|
||||
<a name="l00266"></a><a class="code" href="classuiHandler.html#a12">00266</a> <span class="comment"></span> function <a class="code" href="classuiHandler.html#a12">addSubj</a>(&$formdata, &$mask)
|
||||
00267 {
|
||||
00268 $this->redirUrl = <a class="code" href="conf_8php.html#a2">UI_BROWSER</a>.'?act='.$_REQUEST['act'];
|
||||
00269
|
||||
00270 <span class="preprocessor"> ## first validate the form data</span>
|
||||
00271 <span class="preprocessor"></span> <span class="keywordflow">if</span> ($this->_validateForm($formdata, $mask)) {
|
||||
00272 <span class="keywordflow">if</span>($this->gb->checkPerm($this->userid, '<a class="code" href="ui__browser_8php.html#a5">subjects</a>')){
|
||||
00273 $res = $this->gb->addSubj($formdata['<a class="code" href="classuiHandler.html#a1">login</a>'], ($formdata['pass']=='' ? NULL:$formdata['pass'] ));
|
||||
00274 $this->alertMsg = $this-><a class="code" href="classuiBase.html#a0">tra</a>('Subject <span class="stringliteral">"'.$formdata['login'].'"</span> added.');
|
||||
00275 } <span class="keywordflow">else</span> {
|
||||
00276 $this->alertMsg = $this-><a class="code" href="classuiBase.html#a0">tra</a>('Access denied.');
|
||||
00277 <span class="keywordflow">return</span>;
|
||||
00278 }
|
||||
00279 }
|
||||
00280 <span class="keywordflow">if</span>(PEAR::isError($res)) $this->alertMsg = $res->getMessage();
|
||||
00281 }
|
||||
00282
|
||||
<a name="l00290"></a><a class="code" href="classuiHandler.html#a13">00290</a> function <a class="code" href="classuiHandler.html#a13">removeSubj</a>($login)
|
||||
00291 {
|
||||
00292 $this->redirUrl = <a class="code" href="conf_8php.html#a2">UI_BROWSER</a>.'?act=<a class="code" href="ui__browser_8php.html#a5">subjects</a>';
|
||||
00293
|
||||
00294 <span class="keywordflow">if</span>($this->gb->checkPerm($this->userid, '<a class="code" href="ui__browser_8php.html#a5">subjects</a>')){
|
||||
00295 $res = $this->gb->removeSubj($<a class="code" href="classuiHandler.html#a1">login</a>);
|
||||
00296 }<span class="keywordflow">else</span>{
|
||||
00297 $this->alertMsg='Access denied.';
|
||||
00298 <span class="keywordflow">return</span>;
|
||||
00299 }
|
||||
00300 <span class="keywordflow">if</span>(PEAR::isError($res)) $this->alertMsg = $res->getMessage();
|
||||
00301 }
|
||||
00302
|
||||
<a name="l00313"></a><a class="code" href="classuiHandler.html#a14">00313</a> function <a class="code" href="classuiHandler.html#a14">passwd</a>($uid, $oldpass, $pass, $pass2)
|
||||
00314 {
|
||||
00315 $this->redirUrl = <a class="code" href="conf_8php.html#a2">UI_BROWSER</a>.'?act=<a class="code" href="ui__browser_8php.html#a5">subjects</a>';
|
||||
00316 $ulogin = $this->gb->getSubjName($uid);
|
||||
00317
|
||||
00318 <span class="keywordflow">if</span>($this->userid != $uid &&
|
||||
00319 ! $this->gb->checkPerm($this->userid, '<a class="code" href="ui__browser_8php.html#a5">subjects</a>')){
|
||||
00320 $this->alertMsg='Access denied..';
|
||||
00321 <span class="keywordflow">return</span>;
|
||||
00322 }
|
||||
00323 <span class="keywordflow">if</span>(FALSE === $this->gb->authenticate($ulogin, $oldpass)){
|
||||
00324 $this->alertMsg='Wrong old pasword.';
|
||||
00325 <span class="keywordflow">return</span>;
|
||||
00326 }
|
||||
00327 <span class="keywordflow">if</span>($pass !== $pass2){
|
||||
00328 $this->alertMsg = <span class="stringliteral">"Passwords do not match. "</span>.
|
||||
00329 <span class="stringliteral">"($pass/$pass2)"</span>;
|
||||
00330 $this->redirUrl = <a class="code" href="conf_8php.html#a2">UI_BROWSER</a>.'?act=<a class="code" href="ui__browser_8php.html#a5">subjects</a>';
|
||||
00331 <span class="keywordflow">return</span>;
|
||||
00332 }
|
||||
00333 $this->gb->passwd($ulogin, $oldpass, $pass);
|
||||
00334 }
|
||||
00335
|
||||
00336 <span class="comment">// --- perms ---</span>
|
||||
<a name="l00347"></a><a class="code" href="classuiHandler.html#a15">00347</a> <span class="comment"></span> function <a class="code" href="classuiHandler.html#a15">addPerm</a>($subj, $permAction, $<span class="keywordtype">id</span>, $allowDeny)
|
||||
00348 {
|
||||
00349 <span class="keywordflow">if</span>($this->gb->checkPerm($this->userid, 'editPerms', $<span class="keywordtype">id</span>)){
|
||||
00350 $this->gb->addPerm($subj, $permAction,
|
||||
00351 $<span class="keywordtype">id</span>, $allowDeny);
|
||||
00352 }<span class="keywordflow">else</span>{
|
||||
00353 $this->alertMsg='Access denied.';
|
||||
00354 }
|
||||
00355 $this->redirUrl = <a class="code" href="conf_8php.html#a2">UI_BROWSER</a>.'?<span class="keywordtype">id</span>='.$id.'&act=<a class="code" href="ui__browser_8php.html#a1">permissions</a>';
|
||||
00356 }
|
||||
00357
|
||||
<a name="l00365"></a><a class="code" href="classuiHandler.html#a16">00365</a> function <a class="code" href="classuiHandler.html#a16">removePerm</a>($permid, $oid)
|
||||
00366 {
|
||||
00367 <span class="keywordflow">if</span>($this->gb->checkPerm($this->userid, 'editPerms', $oid))
|
||||
00368 $this->gb->removePerm($permid);
|
||||
00369 <span class="keywordflow">else</span> $this->alertMsg='Access denied.';
|
||||
00370 $this->redirUrl = <a class="code" href="conf_8php.html#a2">UI_BROWSER</a>.'?act=<a class="code" href="ui__browser_8php.html#a1">permissions</a>&<span class="keywordtype">id</span>='.$id;
|
||||
00371 }
|
||||
00372
|
||||
00373
|
||||
<a name="l00384"></a><a class="code" href="classuiHandler.html#a17">00384</a> function <a class="code" href="classuiHandler.html#a17">addSubj2Group</a>($login, $gname, $reid)
|
||||
00385 {
|
||||
00386 <span class="keywordflow">if</span>($this->gb->checkPerm($this->userid, '<a class="code" href="ui__browser_8php.html#a5">subjects</a>')){
|
||||
00387 $res = $this->gb->addSubj2Gr($<a class="code" href="classuiHandler.html#a1">login</a>, $gname);
|
||||
00388 }<span class="keywordflow">else</span>{
|
||||
00389 $this->alertMsg='Access denied.';
|
||||
00390 <span class="keywordflow">return</span>;
|
||||
00391 }
|
||||
00392 <span class="keywordflow">if</span>(PEAR::isError($res)) $this->alertMsg = $res->getMessage();
|
||||
00393
|
||||
00394 $this->redirUrl = <a class="code" href="conf_8php.html#a2">UI_BROWSER</a>.'?act=<a class="code" href="ui__browser_8php.html#a8">groups</a>&<span class="keywordtype">id</span>='.$reid;
|
||||
00395 }
|
||||
00396
|
||||
<a name="l00404"></a><a class="code" href="classuiHandler.html#a18">00404</a> function <a class="code" href="classuiHandler.html#a18">removeSubjFromGr</a>($login, $gname, $reid)
|
||||
00405 {
|
||||
00406 <span class="keywordflow">if</span>($this->gb->checkPerm($this->userid, '<a class="code" href="ui__browser_8php.html#a5">subjects</a>')){
|
||||
00407 $res = $this->gb->removeSubjFromGr($<a class="code" href="classuiHandler.html#a1">login</a>, $gname);
|
||||
00408 }<span class="keywordflow">else</span>{
|
||||
00409 $this->alertMsg='Access denied.';
|
||||
00410 <span class="keywordflow">return</span>;
|
||||
00411 }
|
||||
00412 <span class="keywordflow">if</span>(PEAR::isError($res)) $this->alertMsg = $res->getMessage();
|
||||
00413
|
||||
00414 $this->redirUrl = <a class="code" href="conf_8php.html#a2">UI_BROWSER</a>.'?act=<a class="code" href="ui__browser_8php.html#a8">groups</a>&<span class="keywordtype">id</span>='.$reid;
|
||||
00415 }
|
||||
00416
|
||||
00417
|
||||
<a name="l00418"></a><a class="code" href="classuiHandler.html#a19">00418</a> function <a class="code" href="classuiHandler.html#a19">storeSystemPrefs</a>(&$formdata, &$mask)
|
||||
00419 {
|
||||
00420 <span class="preprocessor"> ## first validate the form data</span>
|
||||
00421 <span class="preprocessor"></span> <span class="keywordflow">if</span> ($this->_validateForm($formdata, $mask)) {
|
||||
00422 $this->alertMsg = $this-><a class="code" href="classuiBase.html#a0">tra</a>('Settings saved');
|
||||
00423 $this->redirUrl = <a class="code" href="conf_8php.html#a2">UI_BROWSER</a>;
|
||||
00424 <span class="keywordflow">return</span>;
|
||||
00425 }
|
||||
00426 $this->redirUrl = <a class="code" href="conf_8php.html#a2">UI_BROWSER</a>.'?act=<a class="code" href="ui__browser_8php.html#a13">systemPrefs</a>';
|
||||
00427 }
|
||||
00428
|
||||
<a name="l00429"></a><a class="code" href="classuiHandler.html#a20">00429</a> function <a class="code" href="classuiHandler.html#a20">_validateForm</a>(&$formdata, &$mask)
|
||||
00430 {
|
||||
00431 $form = <span class="keyword">new</span> HTML_QuickForm('validation', UI_STANDARD_FORM_METHOD, <a class="code" href="conf_8php.html#a1">UI_HANDLER</a>);
|
||||
00432 $this-><a class="code" href="classuiBase.html#a1">_parseArr2Form</a>($form, $mask, 'server');
|
||||
00433 <span class="keywordflow">if</span> (!$form->validate()) {
|
||||
00434 $_SESSION['retransferFormData'] = $formdata;
|
||||
00435 <span class="keywordflow">return</span> FALSE;
|
||||
00436 }
|
||||
00437 <span class="preprocessor"> ## test for uploadet files ####</span>
|
||||
00438 <span class="preprocessor"></span> foreach($mask as $k) {
|
||||
00439 <span class="keywordflow">if</span> ($k['type']=='file') {
|
||||
00440 <span class="keywordflow">if</span> ($formdata[$k['element']]['error']) {
|
||||
00441 $_SESSION['retransferFormData'] = $formdata;
|
||||
00442 <span class="keywordflow">return</span> FALSE;
|
||||
00443 }
|
||||
00444 }
|
||||
00445 }
|
||||
00446 reset($mask);
|
||||
00447 <span class="keywordflow">return</span> TRUE;
|
||||
00448 }
|
||||
00449
|
||||
00450 }
|
||||
00451
|
||||
00452 ?>
|
||||
</pre></div><hr size="1"><address style="align: right;"><small>Generated on Wed Jan 12 16:22:49 2005 for LiveSupport - htmlUI module by
|
||||
<a href="http://www.doxygen.org/index.html">
|
||||
<img src="doxygen.png" alt="doxygen" align="middle" border="0"></a> 1.4.0 </small></address>
|
||||
</body>
|
||||
</html>
|
|
@ -1,19 +0,0 @@
|
|||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
|
||||
<html><head><meta http-equiv="Content-Type" content="text/html;charset=iso-8859-1">
|
||||
<title>LiveSupport&nbsp;-&nbsp;htmlUI&nbsp;module: ui_handler.class.php File Reference</title>
|
||||
<link href="doxygen.css" rel="stylesheet" type="text/css">
|
||||
</head><body>
|
||||
<!-- Generated by Doxygen 1.4.0 -->
|
||||
<div class="qindex"><a class="qindex" href="index.html">Main Page</a> | <a class="qindex" href="hierarchy.html">Class Hierarchy</a> | <a class="qindex" href="classes.html">Alphabetical List</a> | <a class="qindex" href="annotated.html">Class List</a> | <a class="qindex" href="dirs.html">Directories</a> | <a class="qindex" href="files.html">File List</a> | <a class="qindex" href="functions.html">Class Members</a> | <a class="qindex" href="globals.html">File Members</a></div>
|
||||
<div class="nav">
|
||||
<a class="el" href="dir_000000.html">var</a></div>
|
||||
<h1>ui_handler.class.php File Reference</h1>
|
||||
<p>
|
||||
<a href="ui__handler_8class_8php-source.html">Go to the source code of this file.</a><table border="0" cellpadding="0" cellspacing="0">
|
||||
<tr><td></td></tr>
|
||||
</table>
|
||||
<hr size="1"><address style="align: right;"><small>Generated on Wed Jan 12 16:22:49 2005 for LiveSupport - htmlUI module by
|
||||
<a href="http://www.doxygen.org/index.html">
|
||||
<img src="doxygen.png" alt="doxygen" align="middle" border="0"></a> 1.4.0 </small></address>
|
||||
</body>
|
||||
</html>
|
|
@ -1,95 +0,0 @@
|
|||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
|
||||
<html><head><meta http-equiv="Content-Type" content="text/html;charset=iso-8859-1">
|
||||
<title>LiveSupport&nbsp;-&nbsp;htmlUI&nbsp;module: ui_handler.php Source File</title>
|
||||
<link href="doxygen.css" rel="stylesheet" type="text/css">
|
||||
</head><body>
|
||||
<!-- Generated by Doxygen 1.4.0 -->
|
||||
<div class="qindex"><a class="qindex" href="index.html">Main Page</a> | <a class="qindex" href="hierarchy.html">Class Hierarchy</a> | <a class="qindex" href="classes.html">Alphabetical List</a> | <a class="qindex" href="annotated.html">Class List</a> | <a class="qindex" href="dirs.html">Directories</a> | <a class="qindex" href="files.html">File List</a> | <a class="qindex" href="functions.html">Class Members</a> | <a class="qindex" href="globals.html">File Members</a></div>
|
||||
<div class="nav">
|
||||
<a class="el" href="dir_000000.html">var</a> / <a class="el" href="dir_000001.html">html</a></div>
|
||||
<h1>ui_handler.php</h1><a href="ui__handler_8php.html">Go to the documentation of this file.</a><div class="fragment"><pre class="fragment">00001 <?php
|
||||
00002 require dirname(__FILE__).'/../ui_handler_init.php';
|
||||
00003
|
||||
00004 <span class="keywordflow">switch</span>(<a class="code" href="ui__handler_8php.html#a11">$_REQUEST</a>['act']){
|
||||
00005
|
||||
00006 <span class="keywordflow">case</span> <span class="stringliteral">"login"</span>;
|
||||
00007 <a class="code" href="ui__handler__init_8php.html#a0">$uiHandler</a>->login($_REQUEST, $ui_fmask[<span class="stringliteral">"login"</span>]);
|
||||
00008 <span class="keywordflow">break</span>;
|
||||
00009
|
||||
<a name="l00010"></a><a class="code" href="ui__handler_8php.html#a1">00010</a> <span class="keywordflow">case</span> <span class="stringliteral">"logout"</span>;
|
||||
00011 <a class="code" href="ui__handler__init_8php.html#a0">$uiHandler</a>->logout();
|
||||
00012 <span class="keywordflow">break</span>;
|
||||
00013
|
||||
00014 <span class="keywordflow">case</span> <span class="stringliteral">"upload"</span>:
|
||||
<a name="l00015"></a><a class="code" href="ui__handler_8php.html#a2">00015</a> <a class="code" href="ui__handler__init_8php.html#a0">$uiHandler</a>->upload(array_merge($_REQUEST, $_FILES), $<a class="code" href="classuiHandler.html">uiHandler</a>->id, $ui_fmask[<span class="stringliteral">"upload"</span>]);
|
||||
00016 <span class="keywordflow">break</span>;
|
||||
00017
|
||||
00018 <span class="keywordflow">case</span> <span class="stringliteral">"newFolder"</span>:
|
||||
<a name="l00019"></a><a class="code" href="ui__handler_8php.html#a6">00019</a> <a class="code" href="ui__handler__init_8php.html#a0">$uiHandler</a>->newFolder($_REQUEST[<span class="stringliteral">"newname"</span>], $<a class="code" href="classuiHandler.html">uiHandler</a>->id);
|
||||
00020 <span class="keywordflow">break</span>;
|
||||
00021
|
||||
00022 <span class="keywordflow">case</span> <span class="stringliteral">"rename"</span>:
|
||||
<a name="l00023"></a><a class="code" href="ui__handler_8php.html#a7">00023</a> <a class="code" href="ui__handler__init_8php.html#a0">$uiHandler</a>->rename($_REQUEST[<span class="stringliteral">"newname"</span>], $<a class="code" href="classuiHandler.html">uiHandler</a>->id);
|
||||
00024 <span class="keywordflow">break</span>;
|
||||
00025
|
||||
00026 <span class="keywordflow">case</span> <span class="stringliteral">"move"</span>:
|
||||
<a name="l00027"></a><a class="code" href="ui__handler_8php.html#a8">00027</a> <a class="code" href="ui__handler__init_8php.html#a0">$uiHandler</a>->move($_REQUEST[<span class="stringliteral">"newPath"</span>], $<a class="code" href="classuiHandler.html">uiHandler</a>->id);
|
||||
00028 <span class="keywordflow">break</span>;
|
||||
00029
|
||||
00030 <span class="keywordflow">case</span> <span class="stringliteral">"copy"</span>:
|
||||
<a name="l00031"></a><a class="code" href="ui__handler_8php.html#a9">00031</a> <a class="code" href="ui__handler__init_8php.html#a0">$uiHandler</a>->copy($_REQUEST[<span class="stringliteral">"newPath"</span>], $<a class="code" href="classuiHandler.html">uiHandler</a>->id);
|
||||
00032 <span class="keywordflow">break</span>;
|
||||
00033
|
||||
00034 <span class="keywordflow">case</span> <span class="stringliteral">"delete"</span>:
|
||||
<a name="l00035"></a><a class="code" href="ui__handler_8php.html#a10">00035</a> <a class="code" href="ui__handler__init_8php.html#a0">$uiHandler</a>->delete($<a class="code" href="classuiHandler.html">uiHandler</a>->id, $_REQUEST[<span class="stringliteral">"delOverride"</span>]);
|
||||
00036 <span class="keywordflow">break</span>;
|
||||
00037
|
||||
00038 <span class="keywordflow">case</span> <span class="stringliteral">"addUser"</span>:
|
||||
<a name="l00039"></a><a class="code" href="ui__handler_8php.html#a12">00039</a> <a class="code" href="ui__handler__init_8php.html#a0">$uiHandler</a>->addSubj($_REQUEST, $ui_fmask[<span class="stringliteral">"addUser"</span>]);
|
||||
00040 <span class="keywordflow">break</span>;
|
||||
00041
|
||||
00042 <span class="keywordflow">case</span> <span class="stringliteral">"addGroup"</span>:
|
||||
<a name="l00043"></a><a class="code" href="ui__handler_8php.html#a13">00043</a> <a class="code" href="ui__handler__init_8php.html#a0">$uiHandler</a>->addSubj($_REQUEST, $ui_fmask[<span class="stringliteral">"addGroup"</span>]);
|
||||
00044 <span class="keywordflow">break</span>;
|
||||
00045
|
||||
00046 <span class="keywordflow">case</span> <span class="stringliteral">"removeSubj"</span>:
|
||||
<a name="l00047"></a><a class="code" href="ui__handler_8php.html#a14">00047</a> <a class="code" href="ui__handler__init_8php.html#a0">$uiHandler</a>->removeSubj($_REQUEST[<span class="stringliteral">"login"</span>]);
|
||||
00048 <span class="keywordflow">break</span>;
|
||||
00049
|
||||
00050 <span class="keywordflow">case</span> <span class="stringliteral">"changePasswd"</span>:
|
||||
<a name="l00051"></a><a class="code" href="ui__handler_8php.html#a15">00051</a> <a class="code" href="ui__handler__init_8php.html#a0">$uiHandler</a>->passwd($_REQUEST[<span class="stringliteral">"uid"</span>], $_REQUEST[<span class="stringliteral">"oldpass"</span>], $_REQUEST[<span class="stringliteral">"pass"</span>], $_REQUEST[<span class="stringliteral">"pass2"</span>]);
|
||||
00052 <span class="keywordflow">break</span>;
|
||||
00053
|
||||
00054 <span class="keywordflow">case</span> <span class="stringliteral">"addPerm"</span>:
|
||||
<a name="l00055"></a><a class="code" href="ui__handler_8php.html#a4">00055</a> <a class="code" href="ui__handler__init_8php.html#a0">$uiHandler</a>->addPerm($_REQUEST[<span class="stringliteral">"subj"</span>], $_REQUEST[<span class="stringliteral">"permAction"</span>], $<a class="code" href="classuiHandler.html">uiHandler</a>->id, $_REQUEST[<span class="stringliteral">"allowDeny"</span>]);
|
||||
00056 <span class="keywordflow">break</span>;
|
||||
00057
|
||||
00058 <span class="keywordflow">case</span> <span class="stringliteral">"removePerm"</span>:
|
||||
<a name="l00059"></a><a class="code" href="ui__handler_8php.html#a17">00059</a> <a class="code" href="ui__handler__init_8php.html#a0">$uiHandler</a>->removePerm($_REQUEST[<span class="stringliteral">"permid"</span>], $_REQUEST[<span class="stringliteral">"oid"</span>]);
|
||||
00060 <span class="keywordflow">break</span>;
|
||||
00061
|
||||
00062 <span class="keywordflow">case</span> <span class="stringliteral">"addSubj2Group"</span>:
|
||||
<a name="l00063"></a><a class="code" href="ui__handler_8php.html#a18">00063</a> <a class="code" href="ui__handler__init_8php.html#a0">$uiHandler</a>->addSubj2Group($_REQUEST[<span class="stringliteral">"login"</span>], $_REQUEST[<span class="stringliteral">"gname"</span>], $_REQUEST[<span class="stringliteral">"reid"</span>]);
|
||||
00064 <span class="keywordflow">break</span>;
|
||||
00065
|
||||
00066 <span class="keywordflow">case</span> <span class="stringliteral">"removeSubjFromGr"</span>:
|
||||
<a name="l00067"></a><a class="code" href="ui__handler_8php.html#a19">00067</a> <a class="code" href="ui__handler__init_8php.html#a0">$uiHandler</a>->removeSubjFromGr($_REQUEST[<span class="stringliteral">"login"</span>], $_REQUEST[<span class="stringliteral">"gname"</span>], $_REQUEST[<span class="stringliteral">"reid"</span>]);
|
||||
00068 <span class="keywordflow">break</span>;
|
||||
00069
|
||||
00070 <span class="keywordflow">case</span> <span class="stringliteral">"systemPrefs"</span>:
|
||||
<a name="l00071"></a><a class="code" href="ui__handler_8php.html#a20">00071</a> <a class="code" href="ui__handler__init_8php.html#a0">$uiHandler</a>->storeSystemPrefs($_REQUEST, $ui_fmask[<span class="stringliteral">"systemPrefs"</span>]);
|
||||
<a name="l00072"></a><a class="code" href="ui__handler_8php.html#a0">00072</a> <span class="keywordflow">break</span>;
|
||||
00073
|
||||
00074 <span class="keywordflow">default</span>:
|
||||
<a name="l00075"></a><a class="code" href="ui__handler_8php.html#a21">00075</a> $_SESSION[<span class="stringliteral">"alertMsg"</span>] = <a class="code" href="ui__handler__init_8php.html#a0">$uiHandler</a>->tra(<span class="stringliteral">"Unknown method: "</span>).$_REQUEST[<span class="stringliteral">"act"</span>];
|
||||
00076 header(<span class="stringliteral">"Location: "</span>.UI_BROWSER);
|
||||
00077 die();
|
||||
00078 }
|
||||
00079 <span class="keywordflow">if</span> ($<a class="code" href="classuiHandler.html">uiHandler</a>->alertMsg) $_SESSION['alertMsg'] = $uiHandler->alertMsg;
|
||||
00080 header('Location: '.$uiHandler->redirUrl);
|
||||
00081 ?>
|
||||
</pre></div><hr size="1"><address style="align: right;"><small>Generated on Wed Jan 12 16:22:49 2005 for LiveSupport - htmlUI module by
|
||||
<a href="http://www.doxygen.org/index.html">
|
||||
<img src="doxygen.png" alt="doxygen" align="middle" border="0"></a> 1.4.0 </small></address>
|
||||
</body>
|
||||
</html>
|
|
@ -1,621 +0,0 @@
|
|||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
|
||||
<html><head><meta http-equiv="Content-Type" content="text/html;charset=iso-8859-1">
|
||||
<title>LiveSupport&nbsp;-&nbsp;htmlUI&nbsp;module: ui_handler.php File Reference</title>
|
||||
<link href="doxygen.css" rel="stylesheet" type="text/css">
|
||||
</head><body>
|
||||
<!-- Generated by Doxygen 1.4.0 -->
|
||||
<div class="qindex"><a class="qindex" href="index.html">Main Page</a> | <a class="qindex" href="hierarchy.html">Class Hierarchy</a> | <a class="qindex" href="classes.html">Alphabetical List</a> | <a class="qindex" href="annotated.html">Class List</a> | <a class="qindex" href="dirs.html">Directories</a> | <a class="qindex" href="files.html">File List</a> | <a class="qindex" href="functions.html">Class Members</a> | <a class="qindex" href="globals.html">File Members</a></div>
|
||||
<div class="nav">
|
||||
<a class="el" href="dir_000000.html">var</a> / <a class="el" href="dir_000001.html">html</a></div>
|
||||
<h1>ui_handler.php File Reference</h1>
|
||||
<p>
|
||||
<a href="ui__handler_8php-source.html">Go to the source code of this file.</a><table border="0" cellpadding="0" cellspacing="0">
|
||||
<tr><td></td></tr>
|
||||
<tr><td colspan="2"><br><h2>Variables</h2></td></tr>
|
||||
<tr><td class="memItemLeft" nowrap align="right" valign="top"> </td><td class="memItemRight" valign="bottom"><a class="el" href="ui__handler_8php.html#a0">break</a></td></tr>
|
||||
|
||||
<tr><td class="memItemLeft" nowrap align="right" valign="top">case </td><td class="memItemRight" valign="bottom"><a class="el" href="ui__handler_8php.html#a1">logout</a></td></tr>
|
||||
|
||||
<tr><td class="memItemLeft" nowrap align="right" valign="top">case </td><td class="memItemRight" valign="bottom"><a class="el" href="ui__handler_8php.html#a2">upload</a></td></tr>
|
||||
|
||||
<tr><td class="memItemLeft" nowrap align="right" valign="top">case </td><td class="memItemRight" valign="bottom"><a class="el" href="ui__handler_8php.html#a3">$_FILES</a></td></tr>
|
||||
|
||||
<tr><td class="memItemLeft" nowrap align="right" valign="top">case $<a class="el" href="classuiHandler.html">uiHandler</a> </td><td class="memItemRight" valign="bottom"><a class="el" href="ui__handler_8php.html#a4">id</a></td></tr>
|
||||
|
||||
<tr><td class="memItemLeft" nowrap align="right" valign="top">case $<a class="el" href="classuiHandler.html">uiHandler</a> </td><td class="memItemRight" valign="bottom"><a class="el" href="ui__handler_8php.html#a5">$ui_fmask</a> ["upload"]</td></tr>
|
||||
|
||||
<tr><td class="memItemLeft" nowrap align="right" valign="top">case </td><td class="memItemRight" valign="bottom"><a class="el" href="ui__handler_8php.html#a6">newFolder</a></td></tr>
|
||||
|
||||
<tr><td class="memItemLeft" nowrap align="right" valign="top">case </td><td class="memItemRight" valign="bottom"><a class="el" href="ui__handler_8php.html#a7">rename</a></td></tr>
|
||||
|
||||
<tr><td class="memItemLeft" nowrap align="right" valign="top">case </td><td class="memItemRight" valign="bottom"><a class="el" href="ui__handler_8php.html#a8">move</a></td></tr>
|
||||
|
||||
<tr><td class="memItemLeft" nowrap align="right" valign="top">case </td><td class="memItemRight" valign="bottom"><a class="el" href="ui__handler_8php.html#a9">copy</a></td></tr>
|
||||
|
||||
<tr><td class="memItemLeft" nowrap align="right" valign="top">case </td><td class="memItemRight" valign="bottom"><a class="el" href="ui__handler_8php.html#a10">delete</a></td></tr>
|
||||
|
||||
<tr><td class="memItemLeft" nowrap align="right" valign="top">case </td><td class="memItemRight" valign="bottom"><a class="el" href="ui__handler_8php.html#a11">$_REQUEST</a> ["delOverride"]</td></tr>
|
||||
|
||||
<tr><td class="memItemLeft" nowrap align="right" valign="top">case </td><td class="memItemRight" valign="bottom"><a class="el" href="ui__handler_8php.html#a12">addUser</a></td></tr>
|
||||
|
||||
<tr><td class="memItemLeft" nowrap align="right" valign="top">case </td><td class="memItemRight" valign="bottom"><a class="el" href="ui__handler_8php.html#a13">addGroup</a></td></tr>
|
||||
|
||||
<tr><td class="memItemLeft" nowrap align="right" valign="top">case </td><td class="memItemRight" valign="bottom"><a class="el" href="ui__handler_8php.html#a14">removeSubj</a></td></tr>
|
||||
|
||||
<tr><td class="memItemLeft" nowrap align="right" valign="top">case </td><td class="memItemRight" valign="bottom"><a class="el" href="ui__handler_8php.html#a15">changePasswd</a></td></tr>
|
||||
|
||||
<tr><td class="memItemLeft" nowrap align="right" valign="top">case </td><td class="memItemRight" valign="bottom"><a class="el" href="ui__handler_8php.html#a16">addPerm</a></td></tr>
|
||||
|
||||
<tr><td class="memItemLeft" nowrap align="right" valign="top">case </td><td class="memItemRight" valign="bottom"><a class="el" href="ui__handler_8php.html#a17">removePerm</a></td></tr>
|
||||
|
||||
<tr><td class="memItemLeft" nowrap align="right" valign="top">case </td><td class="memItemRight" valign="bottom"><a class="el" href="ui__handler_8php.html#a18">addSubj2Group</a></td></tr>
|
||||
|
||||
<tr><td class="memItemLeft" nowrap align="right" valign="top">case </td><td class="memItemRight" valign="bottom"><a class="el" href="ui__handler_8php.html#a19">removeSubjFromGr</a></td></tr>
|
||||
|
||||
<tr><td class="memItemLeft" nowrap align="right" valign="top">case </td><td class="memItemRight" valign="bottom"><a class="el" href="ui__handler_8php.html#a20">systemPrefs</a></td></tr>
|
||||
|
||||
<tr><td class="memItemLeft" nowrap align="right" valign="top">default </td><td class="memItemRight" valign="bottom"><a class="el" href="ui__handler_8php.html#a21">__pad0__</a></td></tr>
|
||||
|
||||
</table>
|
||||
<hr><h2>Variable Documentation</h2>
|
||||
<a class="anchor" name="a3" doxytag="ui_handler.php::$_FILES"></a><p>
|
||||
<table class="mdTable" cellpadding="2" cellspacing="0">
|
||||
<tr>
|
||||
<td class="mdRow">
|
||||
<table cellpadding="0" cellspacing="0" border="0">
|
||||
<tr>
|
||||
<td class="md" nowrap valign="top">case $_FILES </td>
|
||||
</tr>
|
||||
</table>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
<table cellspacing="5" cellpadding="0" border="0">
|
||||
<tr>
|
||||
<td>
|
||||
|
||||
</td>
|
||||
<td>
|
||||
|
||||
<p>
|
||||
|
||||
<p>
|
||||
Definition at line <a class="el" href="ui__handler_8php-source.html#l00015">15</a> of file <a class="el" href="ui__handler_8php-source.html">ui_handler.php</a>. </td>
|
||||
</tr>
|
||||
</table>
|
||||
<a class="anchor" name="a11" doxytag="ui_handler.php::$_REQUEST"></a><p>
|
||||
<table class="mdTable" cellpadding="2" cellspacing="0">
|
||||
<tr>
|
||||
<td class="mdRow">
|
||||
<table cellpadding="0" cellspacing="0" border="0">
|
||||
<tr>
|
||||
<td class="md" nowrap valign="top">case $_REQUEST["reid"] </td>
|
||||
</tr>
|
||||
</table>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
<table cellspacing="5" cellpadding="0" border="0">
|
||||
<tr>
|
||||
<td>
|
||||
|
||||
</td>
|
||||
<td>
|
||||
|
||||
<p>
|
||||
|
||||
<p>
|
||||
Definition at line <a class="el" href="ui__handler_8php-source.html#l00067">67</a> of file <a class="el" href="ui__handler_8php-source.html">ui_handler.php</a>.
|
||||
<p>
|
||||
Referenced by <a class="el" href="ui__browser_8class_8php-source.html#l00099">uiBrowser::getStructure()</a>, <a class="el" href="ui__browser_8class_8php-source.html#l00015">uiBrowser::uiBrowser()</a>, and <a class="el" href="ui__handler_8class_8php-source.html#l00011">uiHandler::uiHandler()</a>. </td>
|
||||
</tr>
|
||||
</table>
|
||||
<a class="anchor" name="a5" doxytag="ui_handler.php::$ui_fmask"></a><p>
|
||||
<table class="mdTable" cellpadding="2" cellspacing="0">
|
||||
<tr>
|
||||
<td class="mdRow">
|
||||
<table cellpadding="0" cellspacing="0" border="0">
|
||||
<tr>
|
||||
<td class="md" nowrap valign="top">case $ui_fmask["systemPrefs"] </td>
|
||||
</tr>
|
||||
</table>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
<table cellspacing="5" cellpadding="0" border="0">
|
||||
<tr>
|
||||
<td>
|
||||
|
||||
</td>
|
||||
<td>
|
||||
|
||||
<p>
|
||||
|
||||
<p>
|
||||
Definition at line <a class="el" href="ui__handler_8php-source.html#l00071">71</a> of file <a class="el" href="ui__handler_8php-source.html">ui_handler.php</a>. </td>
|
||||
</tr>
|
||||
</table>
|
||||
<a class="anchor" name="a21" doxytag="ui_handler.php::__pad0__"></a><p>
|
||||
<table class="mdTable" cellpadding="2" cellspacing="0">
|
||||
<tr>
|
||||
<td class="mdRow">
|
||||
<table cellpadding="0" cellspacing="0" border="0">
|
||||
<tr>
|
||||
<td class="md" nowrap valign="top">default <a class="el" href="ui__handler_8php.html#a21">__pad0__</a> </td>
|
||||
</tr>
|
||||
</table>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
<table cellspacing="5" cellpadding="0" border="0">
|
||||
<tr>
|
||||
<td>
|
||||
|
||||
</td>
|
||||
<td>
|
||||
|
||||
<p>
|
||||
|
||||
<p>
|
||||
Definition at line <a class="el" href="ui__handler_8php-source.html#l00075">75</a> of file <a class="el" href="ui__handler_8php-source.html">ui_handler.php</a>. </td>
|
||||
</tr>
|
||||
</table>
|
||||
<a class="anchor" name="a13" doxytag="ui_handler.php::addGroup"></a><p>
|
||||
<table class="mdTable" cellpadding="2" cellspacing="0">
|
||||
<tr>
|
||||
<td class="mdRow">
|
||||
<table cellpadding="0" cellspacing="0" border="0">
|
||||
<tr>
|
||||
<td class="md" nowrap valign="top">case <a class="el" href="ui__handler_8php.html#a13">addGroup</a> </td>
|
||||
</tr>
|
||||
</table>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
<table cellspacing="5" cellpadding="0" border="0">
|
||||
<tr>
|
||||
<td>
|
||||
|
||||
</td>
|
||||
<td>
|
||||
|
||||
<p>
|
||||
|
||||
<p>
|
||||
Definition at line <a class="el" href="ui__handler_8php-source.html#l00043">43</a> of file <a class="el" href="ui__handler_8php-source.html">ui_handler.php</a>. </td>
|
||||
</tr>
|
||||
</table>
|
||||
<a class="anchor" name="a16" doxytag="ui_handler.php::addPerm"></a><p>
|
||||
<table class="mdTable" cellpadding="2" cellspacing="0">
|
||||
<tr>
|
||||
<td class="mdRow">
|
||||
<table cellpadding="0" cellspacing="0" border="0">
|
||||
<tr>
|
||||
<td class="md" nowrap valign="top">case <a class="el" href="ui__handler_8php.html#a16">addPerm</a> </td>
|
||||
</tr>
|
||||
</table>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
<table cellspacing="5" cellpadding="0" border="0">
|
||||
<tr>
|
||||
<td>
|
||||
|
||||
</td>
|
||||
<td>
|
||||
|
||||
<p>
|
||||
|
||||
<p>
|
||||
Definition at line <a class="el" href="ui__handler_8php-source.html#l00055">55</a> of file <a class="el" href="ui__handler_8php-source.html">ui_handler.php</a>. </td>
|
||||
</tr>
|
||||
</table>
|
||||
<a class="anchor" name="a18" doxytag="ui_handler.php::addSubj2Group"></a><p>
|
||||
<table class="mdTable" cellpadding="2" cellspacing="0">
|
||||
<tr>
|
||||
<td class="mdRow">
|
||||
<table cellpadding="0" cellspacing="0" border="0">
|
||||
<tr>
|
||||
<td class="md" nowrap valign="top">case <a class="el" href="ui__handler_8php.html#a18">addSubj2Group</a> </td>
|
||||
</tr>
|
||||
</table>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
<table cellspacing="5" cellpadding="0" border="0">
|
||||
<tr>
|
||||
<td>
|
||||
|
||||
</td>
|
||||
<td>
|
||||
|
||||
<p>
|
||||
|
||||
<p>
|
||||
Definition at line <a class="el" href="ui__handler_8php-source.html#l00063">63</a> of file <a class="el" href="ui__handler_8php-source.html">ui_handler.php</a>.
|
||||
<p>
|
||||
Referenced by <a class="el" href="ui__browser_8class_8php-source.html#l00262">uiBrowser::getSubj2GroupForm()</a>. </td>
|
||||
</tr>
|
||||
</table>
|
||||
<a class="anchor" name="a12" doxytag="ui_handler.php::addUser"></a><p>
|
||||
<table class="mdTable" cellpadding="2" cellspacing="0">
|
||||
<tr>
|
||||
<td class="mdRow">
|
||||
<table cellpadding="0" cellspacing="0" border="0">
|
||||
<tr>
|
||||
<td class="md" nowrap valign="top">case <a class="el" href="ui__handler_8php.html#a12">addUser</a> </td>
|
||||
</tr>
|
||||
</table>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
<table cellspacing="5" cellpadding="0" border="0">
|
||||
<tr>
|
||||
<td>
|
||||
|
||||
</td>
|
||||
<td>
|
||||
|
||||
<p>
|
||||
|
||||
<p>
|
||||
Definition at line <a class="el" href="ui__handler_8php-source.html#l00039">39</a> of file <a class="el" href="ui__handler_8php-source.html">ui_handler.php</a>. </td>
|
||||
</tr>
|
||||
</table>
|
||||
<a class="anchor" name="a0" doxytag="ui_handler.php::break"></a><p>
|
||||
<table class="mdTable" cellpadding="2" cellspacing="0">
|
||||
<tr>
|
||||
<td class="mdRow">
|
||||
<table cellpadding="0" cellspacing="0" border="0">
|
||||
<tr>
|
||||
<td class="md" nowrap valign="top"><a class="el" href="ui__handler_8php.html#a0">break</a> </td>
|
||||
</tr>
|
||||
</table>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
<table cellspacing="5" cellpadding="0" border="0">
|
||||
<tr>
|
||||
<td>
|
||||
|
||||
</td>
|
||||
<td>
|
||||
|
||||
<p>
|
||||
|
||||
<p>
|
||||
Definition at line <a class="el" href="ui__handler_8php-source.html#l00072">72</a> of file <a class="el" href="ui__handler_8php-source.html">ui_handler.php</a>. </td>
|
||||
</tr>
|
||||
</table>
|
||||
<a class="anchor" name="a15" doxytag="ui_handler.php::changePasswd"></a><p>
|
||||
<table class="mdTable" cellpadding="2" cellspacing="0">
|
||||
<tr>
|
||||
<td class="mdRow">
|
||||
<table cellpadding="0" cellspacing="0" border="0">
|
||||
<tr>
|
||||
<td class="md" nowrap valign="top">case <a class="el" href="ui__handler_8php.html#a15">changePasswd</a> </td>
|
||||
</tr>
|
||||
</table>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
<table cellspacing="5" cellpadding="0" border="0">
|
||||
<tr>
|
||||
<td>
|
||||
|
||||
</td>
|
||||
<td>
|
||||
|
||||
<p>
|
||||
|
||||
<p>
|
||||
Definition at line <a class="el" href="ui__handler_8php-source.html#l00051">51</a> of file <a class="el" href="ui__handler_8php-source.html">ui_handler.php</a>.
|
||||
<p>
|
||||
Referenced by <a class="el" href="ui__browser_8class_8php-source.html#l00214">uiBrowser::getChangePasswdForm()</a>. </td>
|
||||
</tr>
|
||||
</table>
|
||||
<a class="anchor" name="a9" doxytag="ui_handler.php::copy"></a><p>
|
||||
<table class="mdTable" cellpadding="2" cellspacing="0">
|
||||
<tr>
|
||||
<td class="mdRow">
|
||||
<table cellpadding="0" cellspacing="0" border="0">
|
||||
<tr>
|
||||
<td class="md" nowrap valign="top">case <a class="el" href="ui__handler_8php.html#a9">copy</a> </td>
|
||||
</tr>
|
||||
</table>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
<table cellspacing="5" cellpadding="0" border="0">
|
||||
<tr>
|
||||
<td>
|
||||
|
||||
</td>
|
||||
<td>
|
||||
|
||||
<p>
|
||||
|
||||
<p>
|
||||
Definition at line <a class="el" href="ui__handler_8php-source.html#l00031">31</a> of file <a class="el" href="ui__handler_8php-source.html">ui_handler.php</a>. </td>
|
||||
</tr>
|
||||
</table>
|
||||
<a class="anchor" name="a10" doxytag="ui_handler.php::delete"></a><p>
|
||||
<table class="mdTable" cellpadding="2" cellspacing="0">
|
||||
<tr>
|
||||
<td class="mdRow">
|
||||
<table cellpadding="0" cellspacing="0" border="0">
|
||||
<tr>
|
||||
<td class="md" nowrap valign="top">case <a class="el" href="ui__handler_8php.html#a10">delete</a> </td>
|
||||
</tr>
|
||||
</table>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
<table cellspacing="5" cellpadding="0" border="0">
|
||||
<tr>
|
||||
<td>
|
||||
|
||||
</td>
|
||||
<td>
|
||||
|
||||
<p>
|
||||
|
||||
<p>
|
||||
Definition at line <a class="el" href="ui__handler_8php-source.html#l00035">35</a> of file <a class="el" href="ui__handler_8php-source.html">ui_handler.php</a>. </td>
|
||||
</tr>
|
||||
</table>
|
||||
<a class="anchor" name="a4" doxytag="ui_handler.php::id"></a><p>
|
||||
<table class="mdTable" cellpadding="2" cellspacing="0">
|
||||
<tr>
|
||||
<td class="mdRow">
|
||||
<table cellpadding="0" cellspacing="0" border="0">
|
||||
<tr>
|
||||
<td class="md" nowrap valign="top">case <a class="el" href="classuiHandler.html">uiHandler</a> <a class="el" href="ui__handler_8php.html#a4">id</a> </td>
|
||||
</tr>
|
||||
</table>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
<table cellspacing="5" cellpadding="0" border="0">
|
||||
<tr>
|
||||
<td>
|
||||
|
||||
</td>
|
||||
<td>
|
||||
|
||||
<p>
|
||||
|
||||
<p>
|
||||
Definition at line <a class="el" href="ui__handler_8php-source.html#l00055">55</a> of file <a class="el" href="ui__handler_8php-source.html">ui_handler.php</a>. </td>
|
||||
</tr>
|
||||
</table>
|
||||
<a class="anchor" name="a1" doxytag="ui_handler.php::logout"></a><p>
|
||||
<table class="mdTable" cellpadding="2" cellspacing="0">
|
||||
<tr>
|
||||
<td class="mdRow">
|
||||
<table cellpadding="0" cellspacing="0" border="0">
|
||||
<tr>
|
||||
<td class="md" nowrap valign="top">case <a class="el" href="ui__handler_8php.html#a1">logout</a> </td>
|
||||
</tr>
|
||||
</table>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
<table cellspacing="5" cellpadding="0" border="0">
|
||||
<tr>
|
||||
<td>
|
||||
|
||||
</td>
|
||||
<td>
|
||||
|
||||
<p>
|
||||
|
||||
<p>
|
||||
Definition at line <a class="el" href="ui__handler_8php-source.html#l00010">10</a> of file <a class="el" href="ui__handler_8php-source.html">ui_handler.php</a>. </td>
|
||||
</tr>
|
||||
</table>
|
||||
<a class="anchor" name="a8" doxytag="ui_handler.php::move"></a><p>
|
||||
<table class="mdTable" cellpadding="2" cellspacing="0">
|
||||
<tr>
|
||||
<td class="mdRow">
|
||||
<table cellpadding="0" cellspacing="0" border="0">
|
||||
<tr>
|
||||
<td class="md" nowrap valign="top">case <a class="el" href="ui__handler_8php.html#a8">move</a> </td>
|
||||
</tr>
|
||||
</table>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
<table cellspacing="5" cellpadding="0" border="0">
|
||||
<tr>
|
||||
<td>
|
||||
|
||||
</td>
|
||||
<td>
|
||||
|
||||
<p>
|
||||
|
||||
<p>
|
||||
Definition at line <a class="el" href="ui__handler_8php-source.html#l00027">27</a> of file <a class="el" href="ui__handler_8php-source.html">ui_handler.php</a>. </td>
|
||||
</tr>
|
||||
</table>
|
||||
<a class="anchor" name="a6" doxytag="ui_handler.php::newFolder"></a><p>
|
||||
<table class="mdTable" cellpadding="2" cellspacing="0">
|
||||
<tr>
|
||||
<td class="mdRow">
|
||||
<table cellpadding="0" cellspacing="0" border="0">
|
||||
<tr>
|
||||
<td class="md" nowrap valign="top">case <a class="el" href="ui__handler_8php.html#a6">newFolder</a> </td>
|
||||
</tr>
|
||||
</table>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
<table cellspacing="5" cellpadding="0" border="0">
|
||||
<tr>
|
||||
<td>
|
||||
|
||||
</td>
|
||||
<td>
|
||||
|
||||
<p>
|
||||
|
||||
<p>
|
||||
Definition at line <a class="el" href="ui__handler_8php-source.html#l00019">19</a> of file <a class="el" href="ui__handler_8php-source.html">ui_handler.php</a>. </td>
|
||||
</tr>
|
||||
</table>
|
||||
<a class="anchor" name="a17" doxytag="ui_handler.php::removePerm"></a><p>
|
||||
<table class="mdTable" cellpadding="2" cellspacing="0">
|
||||
<tr>
|
||||
<td class="mdRow">
|
||||
<table cellpadding="0" cellspacing="0" border="0">
|
||||
<tr>
|
||||
<td class="md" nowrap valign="top">case <a class="el" href="ui__handler_8php.html#a17">removePerm</a> </td>
|
||||
</tr>
|
||||
</table>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
<table cellspacing="5" cellpadding="0" border="0">
|
||||
<tr>
|
||||
<td>
|
||||
|
||||
</td>
|
||||
<td>
|
||||
|
||||
<p>
|
||||
|
||||
<p>
|
||||
Definition at line <a class="el" href="ui__handler_8php-source.html#l00059">59</a> of file <a class="el" href="ui__handler_8php-source.html">ui_handler.php</a>. </td>
|
||||
</tr>
|
||||
</table>
|
||||
<a class="anchor" name="a14" doxytag="ui_handler.php::removeSubj"></a><p>
|
||||
<table class="mdTable" cellpadding="2" cellspacing="0">
|
||||
<tr>
|
||||
<td class="mdRow">
|
||||
<table cellpadding="0" cellspacing="0" border="0">
|
||||
<tr>
|
||||
<td class="md" nowrap valign="top">case <a class="el" href="ui__handler_8php.html#a14">removeSubj</a> </td>
|
||||
</tr>
|
||||
</table>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
<table cellspacing="5" cellpadding="0" border="0">
|
||||
<tr>
|
||||
<td>
|
||||
|
||||
</td>
|
||||
<td>
|
||||
|
||||
<p>
|
||||
|
||||
<p>
|
||||
Definition at line <a class="el" href="ui__handler_8php-source.html#l00047">47</a> of file <a class="el" href="ui__handler_8php-source.html">ui_handler.php</a>. </td>
|
||||
</tr>
|
||||
</table>
|
||||
<a class="anchor" name="a19" doxytag="ui_handler.php::removeSubjFromGr"></a><p>
|
||||
<table class="mdTable" cellpadding="2" cellspacing="0">
|
||||
<tr>
|
||||
<td class="mdRow">
|
||||
<table cellpadding="0" cellspacing="0" border="0">
|
||||
<tr>
|
||||
<td class="md" nowrap valign="top">case <a class="el" href="ui__handler_8php.html#a19">removeSubjFromGr</a> </td>
|
||||
</tr>
|
||||
</table>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
<table cellspacing="5" cellpadding="0" border="0">
|
||||
<tr>
|
||||
<td>
|
||||
|
||||
</td>
|
||||
<td>
|
||||
|
||||
<p>
|
||||
|
||||
<p>
|
||||
Definition at line <a class="el" href="ui__handler_8php-source.html#l00067">67</a> of file <a class="el" href="ui__handler_8php-source.html">ui_handler.php</a>. </td>
|
||||
</tr>
|
||||
</table>
|
||||
<a class="anchor" name="a7" doxytag="ui_handler.php::rename"></a><p>
|
||||
<table class="mdTable" cellpadding="2" cellspacing="0">
|
||||
<tr>
|
||||
<td class="mdRow">
|
||||
<table cellpadding="0" cellspacing="0" border="0">
|
||||
<tr>
|
||||
<td class="md" nowrap valign="top">case <a class="el" href="ui__handler_8php.html#a7">rename</a> </td>
|
||||
</tr>
|
||||
</table>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
<table cellspacing="5" cellpadding="0" border="0">
|
||||
<tr>
|
||||
<td>
|
||||
|
||||
</td>
|
||||
<td>
|
||||
|
||||
<p>
|
||||
|
||||
<p>
|
||||
Definition at line <a class="el" href="ui__handler_8php-source.html#l00023">23</a> of file <a class="el" href="ui__handler_8php-source.html">ui_handler.php</a>. </td>
|
||||
</tr>
|
||||
</table>
|
||||
<a class="anchor" name="a20" doxytag="ui_handler.php::systemPrefs"></a><p>
|
||||
<table class="mdTable" cellpadding="2" cellspacing="0">
|
||||
<tr>
|
||||
<td class="mdRow">
|
||||
<table cellpadding="0" cellspacing="0" border="0">
|
||||
<tr>
|
||||
<td class="md" nowrap valign="top">case <a class="el" href="ui__handler_8php.html#a20">systemPrefs</a> </td>
|
||||
</tr>
|
||||
</table>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
<table cellspacing="5" cellpadding="0" border="0">
|
||||
<tr>
|
||||
<td>
|
||||
|
||||
</td>
|
||||
<td>
|
||||
|
||||
<p>
|
||||
|
||||
<p>
|
||||
Definition at line <a class="el" href="ui__handler_8php-source.html#l00071">71</a> of file <a class="el" href="ui__handler_8php-source.html">ui_handler.php</a>. </td>
|
||||
</tr>
|
||||
</table>
|
||||
<a class="anchor" name="a2" doxytag="ui_handler.php::upload"></a><p>
|
||||
<table class="mdTable" cellpadding="2" cellspacing="0">
|
||||
<tr>
|
||||
<td class="mdRow">
|
||||
<table cellpadding="0" cellspacing="0" border="0">
|
||||
<tr>
|
||||
<td class="md" nowrap valign="top">case <a class="el" href="ui__handler_8php.html#a2">upload</a> </td>
|
||||
</tr>
|
||||
</table>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
<table cellspacing="5" cellpadding="0" border="0">
|
||||
<tr>
|
||||
<td>
|
||||
|
||||
</td>
|
||||
<td>
|
||||
|
||||
<p>
|
||||
|
||||
<p>
|
||||
Definition at line <a class="el" href="ui__handler_8php-source.html#l00015">15</a> of file <a class="el" href="ui__handler_8php-source.html">ui_handler.php</a>. </td>
|
||||
</tr>
|
||||
</table>
|
||||
<hr size="1"><address style="align: right;"><small>Generated on Wed Jan 12 16:22:49 2005 for LiveSupport - htmlUI module by
|
||||
<a href="http://www.doxygen.org/index.html">
|
||||
<img src="doxygen.png" alt="doxygen" align="middle" border="0"></a> 1.4.0 </small></address>
|
||||
</body>
|
||||
</html>
|
|
@ -1,35 +0,0 @@
|
|||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
|
||||
<html><head><meta http-equiv="Content-Type" content="text/html;charset=iso-8859-1">
|
||||
<title>LiveSupport&nbsp;-&nbsp;htmlUI&nbsp;module: ui_handler_init.php Source File</title>
|
||||
<link href="doxygen.css" rel="stylesheet" type="text/css">
|
||||
</head><body>
|
||||
<!-- Generated by Doxygen 1.4.0 -->
|
||||
<div class="qindex"><a class="qindex" href="index.html">Main Page</a> | <a class="qindex" href="hierarchy.html">Class Hierarchy</a> | <a class="qindex" href="classes.html">Alphabetical List</a> | <a class="qindex" href="annotated.html">Class List</a> | <a class="qindex" href="dirs.html">Directories</a> | <a class="qindex" href="files.html">File List</a> | <a class="qindex" href="functions.html">Class Members</a> | <a class="qindex" href="globals.html">File Members</a></div>
|
||||
<div class="nav">
|
||||
<a class="el" href="dir_000000.html">var</a></div>
|
||||
<h1>ui_handler_init.php</h1><a href="ui__handler__init_8php.html">Go to the documentation of this file.</a><div class="fragment"><pre class="fragment">00001 <?php
|
||||
00002 session_start();
|
||||
00003 require_once dirname(__FILE__).'/conf.php';
|
||||
00004 require_once dirname(__FILE__).'/ui_fmask.inc.php';
|
||||
00005
|
||||
00006 <span class="comment">// LS classes/functions</span>
|
||||
00007 require_once dirname(__FILE__).'/../../storageServer/var/GreenBox.php';
|
||||
00008 require_once dirname(__FILE__).'/ui_base.inc.php';
|
||||
00009 require_once dirname(__FILE__).'/ui_handler.class.php';
|
||||
00010
|
||||
00011 <span class="comment">// well known classes</span>
|
||||
00012 require_once 'DB.php';
|
||||
00013 require_once 'HTML/QuickForm.php';
|
||||
00014
|
||||
00015 <span class="preprocessor">#PEAR::setErrorHandling(PEAR_ERROR_TRIGGER, E_USER_WARNING);</span>
|
||||
00016 <span class="preprocessor"></span><span class="preprocessor">#PEAR::setErrorHandling(PEAR_ERROR_CALLBACK, 'errCallBack');</span>
|
||||
00017 <span class="preprocessor"></span>PEAR::setErrorHandling(PEAR_ERROR_RETURN);
|
||||
00018 <span class="preprocessor">#PEAR::setErrorHandling(PEAR_ERROR_PRINT);</span>
|
||||
00019 <span class="preprocessor"></span>
|
||||
<a name="l00020"></a><a class="code" href="ui__handler__init_8php.html#a0">00020</a> <a class="code" href="ui__handler__init_8php.html#a0">$uiHandler</a> = <span class="keyword">new</span> <a class="code" href="classuiHandler.html">uiHandler</a>($config);
|
||||
00021 ?>
|
||||
</pre></div><hr size="1"><address style="align: right;"><small>Generated on Wed Jan 12 16:22:49 2005 for LiveSupport - htmlUI module by
|
||||
<a href="http://www.doxygen.org/index.html">
|
||||
<img src="doxygen.png" alt="doxygen" align="middle" border="0"></a> 1.4.0 </small></address>
|
||||
</body>
|
||||
</html>
|
|
@ -1,48 +0,0 @@
|
|||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
|
||||
<html><head><meta http-equiv="Content-Type" content="text/html;charset=iso-8859-1">
|
||||
<title>LiveSupport&nbsp;-&nbsp;htmlUI&nbsp;module: ui_handler_init.php File Reference</title>
|
||||
<link href="doxygen.css" rel="stylesheet" type="text/css">
|
||||
</head><body>
|
||||
<!-- Generated by Doxygen 1.4.0 -->
|
||||
<div class="qindex"><a class="qindex" href="index.html">Main Page</a> | <a class="qindex" href="hierarchy.html">Class Hierarchy</a> | <a class="qindex" href="classes.html">Alphabetical List</a> | <a class="qindex" href="annotated.html">Class List</a> | <a class="qindex" href="dirs.html">Directories</a> | <a class="qindex" href="files.html">File List</a> | <a class="qindex" href="functions.html">Class Members</a> | <a class="qindex" href="globals.html">File Members</a></div>
|
||||
<div class="nav">
|
||||
<a class="el" href="dir_000000.html">var</a></div>
|
||||
<h1>ui_handler_init.php File Reference</h1>
|
||||
<p>
|
||||
<a href="ui__handler__init_8php-source.html">Go to the source code of this file.</a><table border="0" cellpadding="0" cellspacing="0">
|
||||
<tr><td></td></tr>
|
||||
<tr><td colspan="2"><br><h2>Variables</h2></td></tr>
|
||||
<tr><td class="memItemLeft" nowrap align="right" valign="top"> </td><td class="memItemRight" valign="bottom"><a class="el" href="ui__handler__init_8php.html#a0">$uiHandler</a> = new <a class="el" href="classuiHandler.html">uiHandler</a>($config)</td></tr>
|
||||
|
||||
</table>
|
||||
<hr><h2>Variable Documentation</h2>
|
||||
<a class="anchor" name="a0" doxytag="ui_handler_init.php::$uiHandler"></a><p>
|
||||
<table class="mdTable" cellpadding="2" cellspacing="0">
|
||||
<tr>
|
||||
<td class="mdRow">
|
||||
<table cellpadding="0" cellspacing="0" border="0">
|
||||
<tr>
|
||||
<td class="md" nowrap valign="top">$<a class="el" href="classuiHandler.html">uiHandler</a> = new <a class="el" href="classuiHandler.html">uiHandler</a>($config) </td>
|
||||
</tr>
|
||||
</table>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
<table cellspacing="5" cellpadding="0" border="0">
|
||||
<tr>
|
||||
<td>
|
||||
|
||||
</td>
|
||||
<td>
|
||||
|
||||
<p>
|
||||
|
||||
<p>
|
||||
Definition at line <a class="el" href="ui__handler__init_8php-source.html#l00020">20</a> of file <a class="el" href="ui__handler__init_8php-source.html">ui_handler_init.php</a>. </td>
|
||||
</tr>
|
||||
</table>
|
||||
<hr size="1"><address style="align: right;"><small>Generated on Wed Jan 12 16:22:49 2005 for LiveSupport - htmlUI module by
|
||||
<a href="http://www.doxygen.org/index.html">
|
||||
<img src="doxygen.png" alt="doxygen" align="middle" border="0"></a> 1.4.0 </small></address>
|
||||
</body>
|
||||
</html>
|
Binary file not shown.
Loading…
Reference in New Issue