]> git.mxchange.org Git - friendica.git/blobdiff - view/theme/frost/theme.php
Use short form array syntax everywhere
[friendica.git] / view / theme / frost / theme.php
index 1f2c70c8bc7171ce7d7f396a571d5031aee49c0d..22733e8d111462aa718ba431bbb00ed132fd444d 100644 (file)
@@ -9,11 +9,14 @@
  * Maintainer: Zach P <techcity@f.shmuz.in>
  */
 
+use Friendica\App;
+use Friendica\Core\System;
+use Friendica\Object\Image;
+
 function frost_init(App $a) {
        $a->videowidth = 400;
        $a->videoheight = 330;
-       $a->theme_thread_allow = false;
-       set_template_engine($a, 'smarty3');
+       $a->set_template_engine('smarty3');
 }
 
 function frost_content_loaded(App $a) {
@@ -21,8 +24,8 @@ function frost_content_loaded(App $a) {
        // I could do this in style.php, but by having the CSS in a file the browser will cache it,
        // making pages load faster
        if( $a->module === 'home' || $a->module === 'login' || $a->module === 'register' || $a->module === 'lostpass' ) {
-               //$a->page['htmlhead'] = str_replace('$stylesheet', App::get_baseurl() . '/view/theme/frost/login-style.css', $a->page['htmlhead']);
-               $a->theme['stylesheet'] = App::get_baseurl() . '/view/theme/frost/login-style.css';
+               //$a->page['htmlhead'] = str_replace('$stylesheet', System::baseUrl() . '/view/theme/frost/login-style.css', $a->page['htmlhead']);
+               $a->theme['stylesheet'] = System::baseUrl() . '/view/theme/frost/login-style.css';
        }
 
        if ( $a->module === 'login' ) {
@@ -43,18 +46,18 @@ function frost_uninstall() {
        logger("uninstalled theme frost");
 }
 
-function frost_item_photo_links(App $a, &$body_info) {
-       require_once('include/Photo.php');
-       $phototypes = Photo::supportedTypes();
+function frost_item_photo_links(App $a, &$body_info)
+{
+       $phototypes = Image::supportedTypes();
 
        $occurence = 1;
        $p = bb_find_open_close($body_info['html'], "<a", ">");
-       while ($p !== false && ($occurence++ < 500)) {
+       while($p !== false && ($occurence++ < 500)) {
                $link = substr($body_info['html'], $p['start'], $p['end'] - $p['start']);
 
-               $matches = array();
+               $matches = [];
                preg_match("/\/photos\/[\w]+\/image\/([\w]+)/", $link, $matches);
-               if ($matches) {
+               if($matches) {
 
                        // Replace the link for the photo's page with a direct link to the photo itself
                        $newlink = str_replace($matches[0], "/photo/{$matches[1]}", $link);