本文整理汇总了PHP中Manager::getDownloadURL方法的典型用法代码示例。如果您正苦于以下问题:PHP Manager::getDownloadURL方法的具体用法?PHP Manager::getDownloadURL怎么用?PHP Manager::getDownloadURL使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Manager
的用法示例。
在下文中一共展示了Manager::getDownloadURL方法的7个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: formCaptcha
public function formCaptcha()
{
$captcha = $this->getCaptcha('mycaptcha');
$id = $captcha->generate();
$this->data->captcha = Manager::getDownloadURL('files', $id . '.png', true);
$this->data->captchaId = $id;
$this->render();
}
示例2: execute
public function execute($data)
{
$id = uniqid(md5(uniqid("")));
// generate a unique id to avoid name conflicts
$fileOutput = $id . "." . $this->fileType;
// the report generated file
$pathOut = Manager::getFilesPath($fileOutput, true);
$output = $this->exporter->execute($data, $pathOut);
return $output ?: \Manager::getDownloadURL('report', basename($fileOutput), true);
}
示例3: execute
public function execute()
{
$pdfCode = $this->getOutput();
$fileName = uniqid(md5(uniqid(""))) . '.pdf';
$this->fileOutput = Manager::getFilesPath($fileName, true);
$fp = fopen($this->fileOutput, 'x');
fwrite($fp, $pdfCode);
fclose($fp);
$output = \Manager::getDownloadURL('report', $fileName, true);
return $output;
}
示例4: addStyleSheetCode
public function addStyleSheetCode($code)
{
if (Manager::isAjaxCall()) {
$fileName = md5($code) . '.css';
$file = Manager::getFrameworkPath('var/files/' . $fileName);
file_put_contents($file, $code);
$url = Manager::getDownloadURL('cache', $fileName, true);
$this->onLoad("dojo.create(\"link\", {href:'{$url}', type:'text/css', rel:'stylesheet'}, document.getElementsByTagName('head')[0]);");
} else {
$this->styleSheetCode .= "\n" . $code;
}
}
示例5: setPath
public function setPath($file, $inline = true)
{
$this->path = $file;
$this->url = \Manager::getDownloadURL('cache', basename($file), $inline);
}
示例6: renderLot
public function renderLot()
{
$grafico = new PHPlot(800, 600);
$grafico->SetFileFormat("jpg");
$grafico->SetIsInline(True);
#Indicamos o títul do gráfico e o título dos dados no eixo X e Y do mesmo
$grafico->SetTitle($this->data->titulo);
$grafico->SetXTitle($this->data->eixoX);
$grafico->SetYTitle($this->data->eixoY);
#passamos o tipo de gráfico escolhido
if (!$this->data->tipoLot) {
$this->data->tipoLot = 'bars';
}
$grafico->SetPlotType($this->data->tipoLot);
switch ($this->data->tipoLot) {
case 'pie':
$grafico->SetPieLabelType('index', 'custom', 'mycallback');
$grafico->SetDataType('text-data-single');
break;
case 'stackedbars':
$grafico->SetDataType('text-data-yx');
break;
case 'bubbles':
$grafico->SetDataType('data-data-xyz');
break;
}
$grafico->SetLegend($column_names);
#Definimos os dados do gráfico
switch ($this->data->tipoLot) {
case 'pie':
$dados = array(array($this->data->x1, $this->data->y11), array($this->data->x2, $this->data->y21), array($this->data->x3, $this->data->y31), array($this->data->x4, $this->data->y41));
break;
default:
$dados = array(array($this->data->x1, $this->data->y11, $this->data->y12, $this->data->y13), array($this->data->x2, $this->data->y21, $this->data->y22, $this->data->y23), array($this->data->x3, $this->data->y31, $this->data->y32, $this->data->y33), array($this->data->x4, $this->data->y41, $this->data->y42, $this->data->y43));
break;
}
$grafico->SetDataValues($dados);
#Salvamos o gráfico
$caminho = \Manager::getFilesPath();
$fileName = uniqid() . '.jpg';
$grafico->SetOutputFile($caminho . '/' . $fileName);
$grafico->SetIsInline(True);
$grafico->DrawGraph();
#obtemos o endereco do grafico
$this->data->locate = \Manager::getDownloadURL('files', basename($fileName), true);
}
示例7: fillDB
function fillDB($db, $fileInput, $fileOutput, $fileType, $parameters, $classPath, $save)
{
$params = $this->prepareParameters($parameters);
$params->put('REPORT_LOCALE', new Java("java.util.Locale", 'pt', 'BR'));
$extension = substr($fileInput, strrpos($fileInput, '.'));
try {
$sJfm = new JavaClass("net.sf.jasperreports.engine.JasperFillManager");
if ($extension == ".jrxml") {
$s1 = new JavaClass("net.sf.jasperreports.engine.xml.JRXmlLoader");
$jasperDesign = $s1->load($fileInput);
$sJcm = new JavaClass("net.sf.jasperreports.engine.JasperCompileManager");
$report = $sJcm->compileReport($jasperDesign);
} else {
$report = $fileInput;
}
// Create the JDBC Connection
$conn = new Java("org.altic.jasperReports.JdbcConnection");
// Call the driver to be used
$conn->setDriver(\Manager::getConf("db.{$db}.jdbc.driver"));
// Connection URL
$conn->setConnectString(\Manager::getConf("db.{$db}.jdbc.db"));
// Server Connection Username
$conn->setUser(\Manager::getConf("db.{$db}.user"));
// Server Connection Password
$conn->setPassword(\Manager::getConf("db.{$db}.password"));
$print = $sJfm->fillReport($report, $params, $conn->getConnection());
$sJem = new JavaClass("net.sf.jasperreports.engine.JasperExportManager");
$output = \Manager::getDownloadURL('report', basename($this->fileOutput), true);
$sJem->exportReportToPdfFile($print, $fileOutput);
} catch (Exception $e) {
dump_java_exception($e);
}
return $output;
}