This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
$objResult = Database::getInstance()->prepare('SELECT * FROM XXXX') ->execute(); | |
while($objResult->next()) | |
{ | |
$objTlFiles = Database::getInstance() | |
->prepare('SELECT * FROM tl_files WHERE path=?') | |
->execute($objResult->image); | |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
// MM | |
use MetaModels\Filter\Rules\SearchAttribute as MetaModelFilterRuleSearchAttribute; | |
use MetaModels\Filter\Setting\Factory as MetaModelFilterSettingsFactory; | |
// Isotope | |
use Isotope\Model\Product; | |
/** | |
* PHP version 5 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
$objResult = Database::getInstance() | |
->prepare('SELECT id, email FROM orm_avisota_recipient') | |
->execute(); | |
$objTester = new Swift_Mime_Grammar(); | |
while($objResult->next()) | |
{ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
/** | |
* Initialize the system | |
*/ | |
$dir = dirname(isset($_SERVER['SCRIPT_FILENAME']) ? $_SERVER['SCRIPT_FILENAME'] : __FILE__); | |
while ($dir && $dir != '.' && $dir != '/' && !is_file($dir . '/system/initialize.php')) { | |
$dir = dirname($dir); | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php if (!defined('TL_ROOT')) die('You cannot access this file directly!'); | |
class XBreadCrumb extends Frontend | |
{ | |
/** | |
* Constructor | |
*/ | |
public function __construct() | |
{ |
NewerOlder