phpjoomlasliderscroller

Creating default object from empty value in OT Scroller


I have problem with warning on my Joomla website. More precisely "Warning: Creating default object from empty value in /public_html/modules/mod_ot_scroller/helper.php on line 40"

Here is whole helper.php file:

<?php

defined('_JEXEC') or die;

class modOTScrollerHelper
{
  function getImages(&$params, $folder, $type)
  {
    $files  = array();
    $images  = array();

$dir = JPATH_BASE.DS.$folder;

// check if directory exists
if (is_dir($dir))
{
  if ($handle = opendir($dir)) {
    while (false !== ($file = readdir($handle))) {
      if ($file != '.' && $file != '..' && $file != 'CVS' && $file != 'index.html' && $file != 'Thumbs.db') {
        $files[] = $file;
      }
    }
  }
  closedir($handle);

  foreach($type as $tp){
    $tp=trim($tp);
    $i = 0;
    foreach ($files as $img){
      if (!is_dir($dir .DS. $img))
      {
        if (preg_match("#$tp#i", $img)) {
          $images[$i]->name   = $img;
          $images[$i]->folder  = $folder;
          ++$i;
        }
      }
    }
  }

}

return $images;


}

  function getFolder(&$params)
  {
    $folder   = $params->get( 'folder' );

    $LiveSite   = JURI::base();

    // if folder includes livesite info, remove
    if ( JString::strpos($folder, $LiveSite) === 0 ) {
      $folder = str_replace( $LiveSite, '', $folder );
    }
    // if folder includes absolute path, remove
    if ( JString::strpos($folder, JPATH_SITE) === 0 ) {
      $folder= str_replace( JPATH_BASE, '', $folder );
    }
    $folder = str_replace('\\',DS,$folder);
    $folder = str_replace('/',DS,$folder);

    return $folder;
  }
}
?>

Whole website works fine and images shown properly.

What can I do to get rid of it?


Solution

  • Yeah, thats a warning, because you did not specify what $images[$i] should be. If you want to, initialize it using $images[$i] = new \stdClass();