本文整理汇总了PHP中CrowdfundingHelper::fetchUserIds方法的典型用法代码示例。如果您正苦于以下问题:PHP CrowdfundingHelper::fetchUserIds方法的具体用法?PHP CrowdfundingHelper::fetchUserIds怎么用?PHP CrowdfundingHelper::fetchUserIds使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类CrowdfundingHelper
的用法示例。
在下文中一共展示了CrowdfundingHelper::fetchUserIds方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: display
public function display($tpl = null)
{
// Initialise variables
$this->state = $this->get("State");
$this->items = $this->get('Items');
$this->pagination = $this->get('Pagination');
// Get params
$this->params = $this->state->get("params");
/** @var $this->params Joomla\Registry\Registry */
$this->numberInRow = $this->params->get("items_row", 3);
$this->items = CrowdfundingHelper::prepareItems($this->items, $this->numberInRow);
// Get the folder with images
$this->imageFolder = $this->params->get("images_directory", "images/crowdfunding");
// Get currency
$currency = Crowdfunding\Currency::getInstance(JFactory::getDbo(), $this->params->get("project_currency"));
$this->amount = new Crowdfunding\Amount($this->params);
$this->amount->setCurrency($currency);
$this->displayCreator = $this->params->get("integration_display_creator", true);
// Prepare social integration.
if (!empty($this->displayCreator)) {
$socialProfilesBuilder = new Prism\Integration\Profiles\Builder(array("social_platform" => $this->params->get("integration_social_platform"), "users_ids" => CrowdfundingHelper::fetchUserIds($this->items)));
$socialProfilesBuilder->build();
$this->socialProfiles = $socialProfilesBuilder->getProfiles();
}
$this->layoutData = array("items" => $this->items, "params" => $this->params, "amount" => $this->amount, "socialProfiles" => $this->socialProfiles, "imageFolder" => $this->imageFolder, "titleLength" => $this->params->get("discover_title_length", 0), "descriptionLength" => $this->params->get("discover_description_length", 0), "span" => !empty($this->numberInRow) ? round(12 / $this->numberInRow) : 4);
$this->prepareDocument();
parent::display($tpl);
}
示例2: display
public function display($tpl = null)
{
$this->option = JFactory::getApplication()->input->getCmd('option');
$this->state = $this->get('State');
$this->items = $this->get('Items');
$this->pagination = $this->get('Pagination');
// Get params
$this->params = $this->state->get('params');
/** @var $this->params Joomla\Registry\Registry */
$this->numberInRow = (int) $this->params->get('featured_items_row', 3);
$this->items = CrowdfundingHelper::prepareItems($this->items, $this->numberInRow);
// Get the folder with images
$this->imageFolder = $this->params->get('images_directory', 'images/crowdfunding');
// Get currency
$currency = Crowdfunding\Currency::getInstance(JFactory::getDbo(), $this->params->get('project_currency'));
$this->amount = new Crowdfunding\Amount($this->params);
$this->amount->setCurrency($currency);
$this->displayCreator = (bool) $this->params->get('integration_display_creator', true);
// Prepare integration. Load avatars and profiles.
if ($this->displayCreator) {
$socialProfilesBuilder = new Prism\Integration\Profiles\Builder(array('social_platform' => $this->params->get('integration_social_platform'), 'users_ids' => CrowdfundingHelper::fetchUserIds($this->items)));
$socialProfilesBuilder->build();
$this->socialProfiles = $socialProfilesBuilder->getProfiles();
}
$this->layoutData = array('items' => $this->items, 'params' => $this->params, 'amount' => $this->amount, 'socialProfiles' => $this->socialProfiles, 'imageFolder' => $this->imageFolder, 'titleLength' => $this->params->get('discover_title_length', 0), 'descriptionLength' => $this->params->get('discover_description_length', 0), 'span' => $this->numberInRow > 0 ? round(12 / $this->numberInRow) : 4);
$this->prepareDocument();
parent::display($tpl);
}