AlexNook:Песочница: различия между версиями
Материал из AlexNook
Перейти к навигацииПерейти к поиску
ALEX (обсуждение | вклад) |
ALEX (обсуждение | вклад) |
||
Строка 6: | Строка 6: | ||
\frac{1}{\sigma\sqrt{2\pi}}\exp\left(-\frac{(x-\mu)^2}{2\sigma^2}\right) | \frac{1}{\sigma\sqrt{2\pi}}\exp\left(-\frac{(x-\mu)^2}{2\sigma^2}\right) | ||
</math> | </math> | ||
==Geshi== | |||
<syntaxhighlight lang="php" line start="100" highlight="18" line="GESHI_FANCY_LINE_NUMBERS" enclose="div"> | |||
<?php | |||
class ModuleNews extends Module | |||
{ | |||
public function init() | |||
{ | |||
$this->document = new DocumentX($this->name); | |||
$this->document->custom_xslt = true; | |||
} | |||
/** | |||
* Выводим список новостей | |||
* @param $arg->page->value принимает номер страницы | |||
*/ | |||
public function ActionBrowsenews(ActionArgs $arg) | |||
{ | |||
// мы должны были получить номер страницы... | |||
if ( !isset($arg->page->value)) $arg->page = new Argument(1, Argument::integer); | |||
// селекты... | |||
$db=Application::$db; | |||
// ... | |||
} | |||
} | |||
?> | |||
</syntaxhighlight> |
Версия 07:31, 20 апреля 2010
Expression
38
TeX
Geshi
<?php
class ModuleNews extends Module
{
public function init()
{
$this->document = new DocumentX($this->name);
$this->document->custom_xslt = true;
}
/**
* Выводим список новостей
* @param $arg->page->value принимает номер страницы
*/
public function ActionBrowsenews(ActionArgs $arg)
{
// мы должны были получить номер страницы...
if ( !isset($arg->page->value)) $arg->page = new Argument(1, Argument::integer);
// селекты...
$db=Application::$db;
// ...
}
}
?>