You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
<?phpif (!defined('TL_ROOT')) die('You cannot access this file directly!');
class PageExternal extends Controller
{
publicfunctionmyGetSearchablePages($arrPages)
{
$this->import("Database");
$time = time();
$objPages = $this->Database->prepare("SELECT * FROM tl_page WHERE type='external_content_root' AND (start='' OR start<$time) AND (stop='' OR stop>$time) AND published=1 ORDER BY sorting")