2004/11/22 20:47
Mestophales
Just popping in
Posts: 32
Since: 2004/11/19
//This is from the main.php of the xoopmembers module define("_MM_EXTENSION","Extension"); //***************************************************************************************************** //This is in the index.php of the xoopmembers module //Line 85 $Extension = new XoopsFormText(_MM_EXTENSION, "Extension", 10, 5); //Line 289-291 if ( !empty($HTTP_POST_VARS['Extension']) ) { $criteria->add(new Criteria('user_extension', '%'.$myts->addSlashes(trim($HTTP_POST_VARS['Extension'])).'%', 'LIKE')); } //Line 312-315 $criteria->add(new Criteria('level', 0, '>')); $validsort = array("uname", "email", "last_login", "Extension", "posts"); $sort = (!in_array($HTTP_POST_VARS['user_sort'], $validsort)) ? "uname" : $HTTP_POST_VARS['user_sort']; $order = "ASC"; //Line 338 $xoopsTpl->assign('lang_Extension', _MM_EXTENSION); //Line 373 $userdata['Extension'] = "Ext. " .$foundusers[$j]->getVar("user_extension"); //******************************************************************************************************* //This is from the db%Axoopsmembers_searchresults.htm located in the xoopshtmtemplates_c directory //Line 15 </th><th align="center"><?php echo $this->_tpl_vars['lang_Extension']; ?> //Line 56 </td><td class="even" align="center"><?php echo $this->_tpl_vars['users'][$this->_sections['i']['index']]['extension']; ?>
2004/11/22 22:09
brash
Friend of XOOPS
Posts: 2206
Since: 2003/4/10
Advanced Search