CKEditor Free Image Browse Plugin
Posted: 06 Nov 2014, 12:39
Here add issues about the CKEditor with Image Browser and Uploder Plugins from this page: CKEditor Free Image Browse Plugin.
Web Development and Programming Courses
https://coursesweb.net/forum/
Code: Select all
protected $imgext = array('bmp', 'gif', 'jpg', 'jpe', 'jpeg', 'png'); // PHP < 5.4.x syntax
Code: Select all
$re = array('menu'=>'', 'imgs'=>'');
Code: Select all
if($fileobj->isFile() && in_array(pathinfo($fileobj->getFilename(), PATHINFO_EXTENSION), $this->imgext)) $re['imgs'] .= '<span><img src="'. $site . $this->root . $this->imgdr . $name .'" alt="'. $name .'" height="50" />'. $name .'</span>';