vb.org Archive

vb.org Archive (https://vborg.vbsupport.ru/index.php)
-   Member Archives (https://vborg.vbsupport.ru/forumdisplay.php?f=202)
-   -   makeinputcode (https://vborg.vbsupport.ru/showthread.php?t=48326)

fox_m 01-30-2003 08:20 PM

makeinputcode
 
Hi all

I have an question ....

I want to make sureten input boxes nonediteble for the user
what do i need to add to the makeinputcode() to make that happen ??

I have for example this

Code:

doformheader("change_password","update");
 maketableheader("Update htaccess user Password");
 makeinputcode("User Name","ausername",$row[0]);
 makeinputcode("Password","apassword");
doformfooter("Save");

which allows admin users update there htaccess password but i dont want admins update other admins htaccess passwords

$row[0] contains the username that is logged in onto the admin cp

TECK 01-31-2003 07:03 AM

Look in adminfunctions.php for makeinputcode() function, your answer is there.

fox_m 02-11-2003 09:49 PM

Sorry for my very late reaction but i couldnt do sooner.

anyway i have looked at the adminfuntions.php but i cant make out what i need to add so the box is not editeble anymore

Here is a snippet from the adminfuntions.php

PHP Code:

// ###################### Start makeinputcode #######################
function makeinputcode ($title,$name,$value="",$htmlise=1,$size=35) {
// makes code for an imput box: first column contains $title
// second column contains an input box of name, $name and value, $value. $value is "HTMLised"

        
if ($htmlise) {
                
$value=htmlspecialchars($value);
        }

  echo 
"<tr class='".getrowbg()."' valign='top'>\n<td><p>$title</p></td>\n<td><p><input type=\"text\" size=\"$size\" name=\"$name\" value=\"$value\"></p></td>\n</tr>\n";


So help is still appriciated :)

Thnx
Fox_m

Erwin 02-11-2003 10:07 PM

Try this:

PHP Code:

      if ($bbuserinfo[userid]==$userid) {
 
doformheader("change_password","update");
 
maketableheader("Update htaccess user Password");
 
makeinputcode("User Name","ausername",$row[0]);
 
makeinputcode("Password","apassword");
 
doformfooter("Save");
      } 

This way, if you are an admin, and want to edit yourself, that section will show. But the variables will be uneditable if you are trying to edit another admin. Should work...

fox_m 02-11-2003 10:44 PM

I have tryed this.
PHP Code:

doformheader("change_password","update");
  if (
$bbuserinfo[userid]==$userid) {
 
maketableheader("Update htaccess user Password");
 
makeinputcode("User Name","ausername",$row[0]);
 
makeinputcode("Password","apassword");
  } else {
 
makehiddencode("User Name","ausername");
 
makehiddencode("Password","apassword");
  }
doformfooter("Save"); 

but that is giving me only the save and the reset button.
also i noticed that the snippet posted here differs from what i recieved by email.
Which is the above code ...

Erwin 02-12-2003 12:13 AM

Use the code in my post here.


All times are GMT. The time now is 04:56 PM.

Powered by vBulletin® Version 3.8.12 by vBS
Copyright ©2000 - 2025, vBulletin Solutions Inc.

X vBulletin 3.8.12 by vBS Debug Information
  • Page Generation 0.01003 seconds
  • Memory Usage 1,731KB
  • Queries Executed 10 (?)
More Information
Template Usage:
  • (1)ad_footer_end
  • (1)ad_footer_start
  • (1)ad_header_end
  • (1)ad_header_logo
  • (1)ad_navbar_below
  • (1)bbcode_code_printable
  • (3)bbcode_php_printable
  • (1)footer
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (6)option
  • (1)post_thanks_navbar_search
  • (1)printthread
  • (6)printthreadbit
  • (1)spacer_close
  • (1)spacer_open 

Phrase Groups Available:
  • global
  • postbit
  • showthread
Included Files:
  • ./printthread.php
  • ./global.php
  • ./includes/init.php
  • ./includes/class_core.php
  • ./includes/config.php
  • ./includes/functions.php
  • ./includes/class_hook.php
  • ./includes/modsystem_functions.php
  • ./includes/class_bbcode_alt.php
  • ./includes/class_bbcode.php
  • ./includes/functions_bigthree.php 

Hooks Called:
  • init_startup
  • init_startup_session_setup_start
  • init_startup_session_setup_complete
  • cache_permissions
  • fetch_threadinfo_query
  • fetch_threadinfo
  • fetch_foruminfo
  • style_fetch
  • cache_templates
  • global_start
  • parse_templates
  • global_setup_complete
  • printthread_start
  • bbcode_fetch_tags
  • bbcode_create
  • bbcode_parse_start
  • bbcode_parse_complete_precache
  • bbcode_parse_complete
  • printthread_post
  • printthread_complete