
| Current Path : /var/www/html/konvalo_001/ |
Linux ift1.ift-informatik.de 5.4.0-216-generic #236-Ubuntu SMP Fri Apr 11 19:53:21 UTC 2025 x86_64 |
| Current File : /var/www/html/konvalo_001/tmp.php |
<?php
use Drupal\node\Entity\Node;
use Drupal\menu_link_content\Entity\MenuLinkContent;
/* helper */
function create_page($title,$alias,$html){
$node = Node::create([
"type"=>"page",
"title"=>$title,
"body"=>[
"value"=>$html,
"format"=>"full_html"
],
"status"=>1
]);
$node->save();
\Drupal\path_alias\Entity\PathAlias::create([
"path"=>"/node/".$node->id(),
"alias"=>$alias
])->save();
return $node;
}
function add_menu($title,$node,$parent=null){
$link = [
"title"=>$title,
"link"=>["uri"=>"entity:node/".$node->id()],
"menu_name"=>"main"
];
if($parent){
$link["parent"]=$parent;
}
$m = MenuLinkContent::create($link);
$m->save();
return $m->getPluginId();
}
function find_page($alias){
$path = \Drupal::service("path_alias.manager")->getPathByAlias($alias);
$nid = str_replace("/node/","",$path);
$node = \Drupal\node\Entity\Node::load($nid);
return($node);
}
$text = <<<HTML
<div style="background:#87c7e8 url('/sites/default/files/wolken.png') repeat; padding:120px 20px; text-align:center;">
<div style="max-width:900px;margin:0 auto;font-family:Arial, Helvetica, sans-serif;color:#243b53;line-height:1.7;">
<!-- große Wolke mit Grafik -->
<div style="display:inline-block;background:white;padding:90px 110px;border-radius:220px;box-shadow:0 20px 60px rgba(0,0,0,0.08);margin-bottom:70px;">
<img src="/sites/default/files/grafik_konvalo.png" style="max-width:520px;width:100%;height:auto;">
</div>
<!-- HEADLINE -->
<div style="font-size:54px;font-weight:700;color:#1e3a8a;margin-bottom:30px;">
Continuous Consolidation. At your fingertips.
</div>
<div style="font-size:28px;margin-bottom:50px;">
Accounting and consolidation for modern companies.
</div>
<!-- INTRO -->
<div style="font-size:20px;margin-bottom:60px;">
Konvalo enables continuous reconciliation and financial consolidation across company ledgers.
</div>
<!-- BUTTONS -->
<div style="margin-bottom:90px;">
<a href="/contact" style="display:inline-block;background:#1e3a8a;color:white;padding:14px 28px;text-decoration:none;font-size:18px;border-radius:6px;margin-right:15px;">
Request Demo
</a>
<a href="#learnmore" style="display:inline-block;background:white;color:#1e3a8a;padding:14px 28px;text-decoration:none;font-size:18px;border-radius:6px;border:2px solid #1e3a8a;">
Learn more
</a>
</div>
<!-- CHALLENGE -->
<div id="learnmore" style="font-size:34px;font-weight:600;color:#1e3a8a;margin-bottom:25px;">
The challenge
</div>
<div style="font-size:20px;margin-bottom:20px;">
Financial data is fragmented.
</div>
<div style="font-size:20px;margin-bottom:20px;">
Companies operate multiple accounting systems across legal entities.
</div>
<div style="font-size:20px;margin-bottom:20px;">
Intercompany reconciliation and financial consolidation are slow, manual and often spreadsheet-driven.
</div>
<div style="font-size:20px;margin-bottom:70px;">
Month-end closing can take weeks.
</div>
<!-- SOLUTION -->
<div style="font-size:34px;font-weight:600;color:#1e3a8a;margin-bottom:25px;">
The solution
</div>
<div style="font-size:22px;margin-bottom:20px;">
Continuous consolidation.
</div>
<div style="font-size:20px;margin-bottom:60px;">
Konvalo connects company ledgers and continuously reconciles financial data.
</div>
<!-- FEATURES -->
<div style="font-size:20px;margin-bottom:70px;">
automated reconciliation<br>
continuous consolidation<br>
real-time financial visibility
</div>
<!-- PRODUCT -->
<div style="font-size:34px;font-weight:600;color:#1e3a8a;margin-bottom:25px;">
The product
</div>
<div style="font-size:20px;margin-bottom:20px;">
Built for modern finance teams.
</div>
<div style="font-size:20px;margin-bottom:20px;">
Konvalo provides:
</div>
<div style="font-size:20px;margin-bottom:60px;">
multi-company accounting<br>
intercompany reconciliation<br>
financial consolidation<br>
multi-currency support<br>
real-time financial reporting
</div>
<!-- FOOTER -->
<div style="font-size:20px;margin-bottom:20px;">
Start using Konvalo.
</div>
<div style="font-size:18px;">
Konvalo. Continuous consolidation for modern companies.
Powered by <a href="/strat" style="color:#1e3a8a;text-decoration:none;font-weight:600;">STRAT</a>.
</div>
</div>
</div
HTML;
$pg = find_page("/home");
$pg->title->value = " ";
$pg->body->value = $text;
$pg->body->format = 'full_html';
$pg->save();