summaryrefslogtreecommitdiffstats
path: root/docs/TODO
Commit message (Expand)AuthorAgeFilesLines
* update docsGuillaume Cottenceau2001-01-251-2/+2
* no_commentPascal Rigaux2000-08-061-5/+5
* no_commentPascal Rigaux2000-05-111-0/+3
* no_commentPascal Rigaux2000-05-021-0/+2
* *** empty log message ***Francois Pons2000-05-021-2/+2
* no_commentPascal Rigaux2000-05-011-0/+4
* no_commentPascal Rigaux2000-04-261-0/+2
* no_commentPascal Rigaux2000-04-251-10/+8
* no_commentPascal Rigaux2000-04-191-0/+2
* no_commentPascal Rigaux2000-04-191-6/+6
* no_commentPascal Rigaux2000-04-171-2/+2
* no_commentPascal Rigaux2000-04-141-0/+2
* no_commentPascal Rigaux2000-04-121-0/+3
* no_commentPascal Rigaux2000-04-101-0/+2
* no_commentPascal Rigaux2000-04-051-2/+3
* no_commentPascal Rigaux2000-03-301-32/+33
* no_commentPascal Rigaux2000-03-301-4/+6
* no_commentPascal Rigaux2000-03-261-9/+6
* no_commentPascal Rigaux2000-03-251-60/+58
* no_commentPascal Rigaux2000-03-201-3/+3
* *** empty log message ***Francois Pons2000-03-201-0/+2
* no_commentPascal Rigaux2000-03-141-0/+2
* no_commentPascal Rigaux2000-03-111-20/+19
* *** empty log message ***Francois Pons2000-03-101-0/+3
* no_commentPascal Rigaux2000-03-071-0/+2
* no_commentPascal Rigaux2000-03-051-0/+6
* no_commentPascal Rigaux2000-02-291-0/+2
* no_commentPascal Rigaux2000-02-291-8/+14
* no_commentPascal Rigaux2000-02-281-0/+2
* no_commentPascal Rigaux2000-02-281-0/+2
* no_commentPascal Rigaux2000-02-271-0/+8
* no_commentPascal Rigaux2000-02-251-3/+5
* no_commentPascal Rigaux2000-02-231-5/+6
* *** empty log message ***Francois Pons2000-02-231-0/+3
* no_commentPascal Rigaux2000-02-231-21/+20
* no_commentPascal Rigaux2000-02-221-0/+2
* *** empty log message ***Francois Pons2000-02-221-25/+48
* no_commentPascal Rigaux2000-02-211-0/+4
* no_commentPascal Rigaux2000-02-161-0/+2
* no_commentPascal Rigaux2000-02-141-0/+4
* no_commentPascal Rigaux2000-02-111-0/+2
* no_commentPascal Rigaux2000-02-111-6/+30
* no_commentPascal Rigaux2000-02-091-22/+29
* *** empty log message ***Francois Pons2000-02-091-0/+7
* no_commentPascal Rigaux2000-02-091-2/+2
* no_commentPascal Rigaux2000-02-091-122/+140
* no_commentPascal Rigaux2000-01-271-1/+3
* no_commentPascal Rigaux2000-01-271-0/+5
* no_commentPascal Rigaux2000-01-171-0/+4
* no_commentPascal Rigaux2000-01-161-0/+2
/span> // Do not set this variable, we will use the default value return null; } else if ($key == 'field_ident' && isset($field_data[$key])) { return $field_data[$key]; } else { $default_value = ''; $lang_fields = array( 'l_lang_name', 'l_lang_explain', 'l_lang_default_value', 'l_lang_options', ); if (in_array($key, $lang_fields)) { $default_value = array(0 => ''); } return $this->request->variable($key, $default_value, true); } } /** * {@inheritDoc} */ public function display_options(&$template_vars, &$field_data) { return; } /** * Return templated value/field. Possible values for $mode are: * change == user is able to set/enter profile values; preview == just show the value */ public function process_field_row($mode, $profile_row) { $preview_options = ($mode == 'preview') ? $profile_row['lang_options'] : false; // set template filename $this->template->set_filenames(array( 'cp_body' => $this->get_template_filename(), )); // empty previously filled blockvars $this->template->destroy_block_vars($this->get_name_short()); // Assign template variables $this->generate_field($profile_row, $preview_options); return $this->template->assign_display('cp_body'); } }