Exemplo n.º 1
0
 public function congratulation($password)
 {
     global $lang;
     $tml = file_get_contents(litepublisher::$paths->lib . 'install' . DIRECTORY_SEPARATOR . 'install.congratulation.tml');
     $html = THtmlResource::instance();
     $html->section = 'installation';
     $lang = tlocal::instance('installation');
     $args = targs::instance();
     $args->title = litepublisher::$options->name;
     $args->url = litepublisher::$options->url . '/';
     $args->password = $password;
     $content = $html->parsearg($tml, $args);
     $this->echohtml($content);
 }