Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 955109
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 16, 20262026-05-16T00:19:38+00:00 2026-05-16T00:19:38+00:00

I have a block that I want to show edit and delete buttons for

  • 0

I have a block that I want to show edit and delete buttons for users with access, and other buttons for the rest of the users. This is the script I’m using for the users with update permission:

    <?php
if(arg(0) == 'node' && is_numeric(arg(1))){
    //load $node object
    $node = node_load(arg(1));
    //check for node update access
    if (node_access("update", $node)){
print '<p><a href=\"./edit\">edit</a> <a href=\"./delete\">delete</a></p>';

}}
?>

This is the same script I used for block visibility on other blocks, and it works. Why isn’t it working here?

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-16T00:19:38+00:00Added an answer on May 16, 2026 at 12:19 am

    I tested your code on a Drupal 6 site and it seems to work fine, except for the link urls it creates. I do see two links named “edit” and “delete”. Are you sure that you enabled the block in a region, and that the region is displayed in page.tpl.php? (You can check that by putting another block in the same region and see if it does show up.)

    To get the correct links, I recommend to use Drupal’s l() function like this:

    <?php
    if (arg(0) == 'node' && is_numeric(arg(1))) {
      //load $node object
      $node = node_load(arg(1));
      //check for node update access
      if (node_access("update", $node)){
        $nid = $node->nid
        print l(t('edit'), "node/$nid/edit") .' '. l(t('delete'), "node/$nid/delete");
      }
    }
    ?>
    

    Note that I’m also using the t() function to make “edit” and “delete” translatable.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have an array of vectors that I want to be stored in Block
I have a div block that I want to be a link to somewhere.
I have some terms set for a node and a block that I want
I have blocks of data that I want to write in a txt, or
I have blocks of content that are toggled on/off via jQuery and I want
I have a code block that leads to a Internet Explorer cannot display the
If have if block like that if(foo() || foo2() || foo3()) { //do some
I have a memory block that is divided into a series of location that
I have a code block that checks certain elements before allowing a form to
I have a block of text that I need to give a background colour

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.