36 lines
No EOL
605 B
PHP
36 lines
No EOL
605 B
PHP
<?php
|
|
|
|
require_once 'core/widgets/widget.php';
|
|
|
|
/**
|
|
* Êëàññ äëÿ ñîçäàíèÿ äèàëîãîâûõ îêîí, òèïà ïîèñêà è íàñòðîéêè òàáëèöû
|
|
*/
|
|
class Dialog extends Widget
|
|
{
|
|
protected $title;
|
|
protected $action;
|
|
|
|
private $friend;
|
|
|
|
function setFriend(Widget $friend)
|
|
{
|
|
$this->friend = $friend->getName();
|
|
}
|
|
|
|
function getPostCode()
|
|
{
|
|
return $this->getName() . ".setFriend(" . $this->friend . ");";
|
|
}
|
|
|
|
function setTitle($title)
|
|
{
|
|
$this->title = $title;
|
|
}
|
|
|
|
function setAction($action)
|
|
{
|
|
$this->action = forceUrl($action);
|
|
}
|
|
}
|
|
|
|
?>
|