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 7927165
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 3, 20262026-06-03T19:10:28+00:00 2026-06-03T19:10:28+00:00

Is there a way to programmatically add an array of images from a particular

  • 0

Is there a way to programmatically add an array of images from a particular file path?? I want to add all the images from one folder in my drupal site and add fancybox styling to them, can this be done? I’ve tried looking on drupal.org with no success. Thanks for the help.

  • 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-06-03T19:10:29+00:00Added an answer on June 3, 2026 at 7:10 pm

    Sure you can, just enable the php filter module, and put the php code to do this in the body of the node. Make sure you set the format of the body to PHP and not plain text or html.

    So if the image is in your theme folder, you can grab and display display it using:

    <img src="<?php print path_to_theme() . "/files/image.jpg"; ?>" title='some image'/>
    

    You can get all files within a directory using php’s scandir function. This function will return an array of all files within your files directory, after which you can loop through this array and output all image files to the screen like:

    $files = scandir("path/to/files/dir");
    /*Unset the first 2 items in the array since they contain . and .. respectively */
    unset($files[0]);
    unset($files[1]);
    foreach($files as $file)
    {
        /* 
          Here we get the file extension 
          If the value of $file = "photo.jpeg"; this returns "jpeg"
        */
        $f_ext =  end(explode(‘.’, $file));   
        /*Checking if file is an image*/
        if($f_ext == 'jpg' || $f_ext == 'png' || $f_ext == 'gif'|| $f_ext == 'jpeg')
        {
             print "<img src='<?php print "path/to/files/$file"; ?>' title='some image'/>";
        }
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Is there a way to programmatically add an alarm entry from the app I
Is there a way to programmatically interface with iTunes to add new playlists or
Is there a way to programmatically create a compressed folder in Windows? I can't
Is there a way to programmatically disable usb storage devices from working while still
Is there a way to programmatically list all geo-tagged Wikipedia entries within a radius
In Java Bean Validation (JSR 303), is there a way to programmatically (dynamically) add
Is there a way to programmatically add hosts to the local name resolver under
Is there a way to programmatically trace the execution of all python functions/methods? I
Is there a way to programmatically add a subform to a form using Access
Is there a way to programmatically add a digital signature to a VBA Macro

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.