Image Public URL with Size
Jamroom Developers
https://MySite.com/gallery/image/gallery_image/430/xlarge
// If this module REQUIRES another module, and the other module is excluded, we don't show
if (isset($_mods[$module]['module_requires']{1})) {
$_req = explode(',', $_mods[$module]['module_requires']);
if (isset($_req) && is_array($_req)) {
foreach ($_req as $rmod) {
if (strpos($rmod, ':')) {
list($rmod,) = explode(':', $rmod);
}
$rmod = trim($rmod);
if (isset($_exc[$rmod]) || !isset($_mods[$rmod]) || isset($_rt["quota_{$rmod}_allowed"]) && $_rt["quota_{$rmod}_allowed"] != 'on' || isset($_login[$rmod]) && !jrUser_is_logged_in()) {
if ($module == 'jrTracker') { fdebug("removing jrTracker here",$module); }
continue 3;
}
}
}
}