Search found 3275 matches
- Thu Feb 18, 2021 2:07 pm
- Forum: Addons and Plugins
- Topic: Last changes
- Replies: 13
- Views: 1501
Re: Last changes
I tried to add into the index.php ... $pageData = $pd_router->find_all(); $index = $pd_router->find_page($index)['last_edit']; /***/ uasort($pageData, function ($a, $b) { return $b['last_edit'] - $a['last_edit']; });... and foreach ($pages as $page) { $html .= '<li><a href="' . "$sn?$u[$page]" . '">...
- Mon Feb 15, 2021 7:48 pm
- Forum: Addons and Plugins
- Topic: Last changes
- Replies: 13
- Views: 1501
Re: Last changes
There's not too much I've done. I have only created the backend and added some styling. The date of the recent change is still missing and I don't know, how to include it.
- Sat Feb 13, 2021 7:53 pm
- Forum: Addons and Plugins
- Topic: Last changes
- Replies: 13
- Views: 1501
Re: Last changes
Ich habe versucht die Funktion zum Plugin übertragen und es scheint zu funktionieren soweit. Es ist ermöglicht bißchen stylen und die Liste entw. als ungeordnette oder geordnette Liste ausgeben. Noch habe ich nocht geschafft das jeweilige Datum hinter dem Seitentitle zu geben. Der Plugin wurde nur a...
- Fri Feb 12, 2021 8:53 am
- Forum: Addons and Plugins
- Topic: Last changes
- Replies: 13
- Views: 1501
Re: Last changes
Well, the function recently_changed both as unserfunncs and simpleplugins_xh does the same reliably. However, a stylesheet would be nice and a more complex format would be good as well. E.g. something like: Recently Changed Page 1 - dd.mm.yyyy hh:mm:ss Page 2 - dd.mm.yyyy hh:mm:ss Page 3 - dd.mm.yyy...
- Mon Feb 08, 2021 8:31 pm
- Forum: Addons and Plugins
- Topic: Last changes
- Replies: 13
- Views: 1501
Re: Last changes
Have you tested utaka's Simpleplugins_XH -> recently_changed? I am not sure if it is still available somewhere. His page doesn't exist anymore.
It would maybe require only extending the "date of change" parameter.
Have a look here.
It would maybe require only extending the "date of change" parameter.
Have a look here.
- Mon Feb 08, 2021 6:23 am
- Forum: Addons and Plugins
- Topic: Chat-Box
- Replies: 5
- Views: 501
Re: Chat-Box
Geht es nicht, wenn du zwei verschiedene Browser verwendest? So habe ich es nicht getestet. Und ich habe es mit professionellem ChatWidget versucht. Das läuft super und ist wirklich einfacher. Es ermöglicht sogar ein Nachricht senden, wenn der Chat offline ist. Und es gibt viele Bonuses dabei (Beil...
- Tue Feb 02, 2021 10:45 pm
- Forum: Bugs
- Topic: Problem mit fontawesome
- Replies: 5
- Views: 1454
Re: Problem mit fontawesome
Naja, tinyMCE5 "schmäckt"mir nicht besonders. Es ist wohl nur eine Frage der Gewöhnheit. Aber der Reingegebene Code gefählt mir überhaupt nicht. <span><span style="display: none;">.</span><span class="fab fa-adn" contenteditable="false"></span></span> Soweit ich es ferstanden habe, ein SPAN ohne Con...
- Tue Feb 02, 2021 6:02 pm
- Forum: Bugs
- Topic: Problem mit fontawesome
- Replies: 5
- Views: 1454
Re: Problem mit fontawesome
Der Editor bereinigt den Code automatisch, vor allem wenn leere Tags vorhanden sind. ... Beispiel: <span class="fa fa-external-link-square"> </span> Wäre es nicht möglich, im Plugin gleich einzustellen, daß die reingegebene "fa" Zeichen mit " " reingehen? Es ist mit immer wieder passiert:...
- Tue Feb 02, 2021 10:22 am
- Forum: Changing layout
- Topic: Admin's hints in content
- Replies: 12
- Views: 2148
- Tue Feb 02, 2021 4:11 am
- Forum: Changing layout
- Topic: Admin's hints in content
- Replies: 12
- Views: 2148
Re: Admin's hints in content
Ja, genau so habe ich es gemacht. Nur habe ich es mitaufgerufen, um keinen Box zu sehen, falls es kein "hint" auf einer Seite gegeben ist.
Code: Select all
<?php if(XH_ADM && $edit && strlen($hint)> 0){echo '<div class="hint">'.$hint.'</div>';}else{echo '';}?>