本文整理汇总了PHP中AdminPage::build方法的典型用法代码示例。如果您正苦于以下问题:PHP AdminPage::build方法的具体用法?PHP AdminPage::build怎么用?PHP AdminPage::build使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类AdminPage
的用法示例。
在下文中一共展示了AdminPage::build方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: build
public function build()
{
parent::build();
header('Content-Type: ' . $this->photo->getMimeType($this->dimension_shortname));
readfile($this->photo->getFilePath($this->dimension_shortname));
exit;
}
示例2: build
public function build()
{
parent::build();
$config = $this->app->config;
$this->layout->startCapture('content');
if ($config->pinhole->google_maps_api_key === null) {
echo Pinhole::_('You must specify a google maps api key ' . 'to use geo-tagging features.');
} elseif ($config->pinhole->google_maps_admin_api_key === null) {
echo Pinhole::_('You must specify an admin google maps api key ' . 'to use geo-tagging features.');
} else {
printf('<iframe src="%s/Search" frameborder="0" ' . 'id="search_iframe"></iframe>', $this->getComponentName());
echo '<div id="map_frame">';
echo '<form method="post" action="#">';
printf('<input type="submit" id="set_gps" value="%s" />', Pinhole::_('Geo-Tag Photo(s)'));
printf(' <input type="checkbox" id="auto_next" /> ' . '<label for="auto_next">%s</label>', Pinhole::_('Automatically proceed to next photo'));
echo '</form>';
echo '<div id="map"></div>';
echo '</div>';
echo Swat::displayInlineJavaScript($this->getInlineJavaScript());
}
$this->layout->endCapture();
}