1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79
<?php
/* --------------------------------------------------------------
QuickEditPropertiesTooltips.inc.php 2017-03-09
Gambio GmbH
http://www.gambio.de
Copyright (c) 2017 Gambio GmbH
Released under the GNU General Public License (Version 2)
[http://www.gnu.org/licenses/gpl-2.0.html]
--------------------------------------------------------------
*/
/**
* Class QuickEditPropertiesTooltips
*
* @category System
* @package Extensions
* @subpackage QuickEdit
*/
class QuickEditPropertiesTooltips implements QuickEditPropertiesTooltipsInterface
{
/**
* @var ContentView
*/
protected $contentView;
/**
* @var CI_DB_query_builder
*/
protected $db;
/**
* QuickEditPropertiesTooltips constructor.
*/
public function __construct()
{
$this->db = StaticGXCoreLoader::getDatabaseQueryBuilder();
$this->contentView = MainFactory::create('ContentView');
$this->contentView->set_escape_html(true);
$this->contentView->set_flat_assigns(true);
$this->contentView->set_template_dir(DIR_FS_CATALOG . 'admin/html/content/quick_edit/tooltips/');
}
/**
* This method is not currently used. Can be removed.
*
* @param QuickEditProductPropertiesListItem $data QuickEdit properties collection
*
* @return array Returns an empty array
*/
public function getRowTooltips(QuickEditProductPropertiesListItem $data)
{
// @todo This method is not currently used. Can be removed.
return [];
}
/**
* Returns the view for the tooltip.
*
* @param string $templateFile Template file.
* @param array $contentArray Content Array.
*
* @return string Returns the view for the tooltip.
*/
protected function _render($templateFile, array $contentArray)
{
$this->contentView->set_content_template($templateFile);
foreach($contentArray as $contentItemKey => $contentItemValue)
{
$this->contentView->set_content_data($contentItemKey, $contentItemValue);
}
return $this->contentView->get_html();
}
}