Ignore:
Timestamp:
Sep 12, 2013, 9:14:38 PM (11 years ago)
Author:
chronos
Message:
  • Modified: RSS channel management is now part of News module. In this module other modules can register their RSS channel which will be availble on all pages for subscription.
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/Modules/ShoutBox/ShoutBox.php

    r561 r581  
    1111    $this->License = 'GNU/GPL';
    1212    $this->Description = 'Simple user chat system.';
    13     $this->Dependencies = array();
     13    $this->Dependencies = array('News');
    1414  }
    1515 
     
    1717  {
    1818        $this->System->RegisterPage('shoutbox', 'PageShoutBox');
    19         $this->System->RegisterRSS(array('Title' => 'Kecátko', 'Channel' => 'shoutbox'));
    20          
     19        $this->System->ModuleManager->Modules['News']->RegisterRSS(array(
     20          'Title' => 'Kecátko', 'Channel' => 'shoutbox', 'Callback' => array('PageShoutBox', 'ShowRSS'),
     21          'Permission' => LICENCE_ANONYMOUS));           
    2122  }
    2223 
     
    120121                return($Output);
    121122        }       
     123       
     124        function ShowRSS()
     125        {
     126          $TitleLength = 50;
     127          mb_internal_encoding('utf-8');
     128          $DbResult = $this->Database->query('SELECT UNIX_TIMESTAMP(`Date`) AS `UnixDate`, `User`, `UserName`, `Text` FROM `ShoutBox` ORDER BY `ID` DESC LIMIT 20');
     129          while($DbRow = $DbResult->fetch_assoc())
     130          {
     131            $Title = mb_substr($DbRow['Text'], 0, $TitleLength);
     132            if(mb_strlen($Title) == $TitleLength) $Title .= '...';
     133            $Items[] = array
     134            (
     135                'Title' => $DbRow['UserName'].': '.$Title,
     136                'Link' =>  'http://'.$this->System->Config['Web']['Host'].$this->System->Link('/'),
     137                'Description' => $DbRow['Text'],
     138                'Time' => $DbRow['UnixDate'],
     139            );
     140          }
     141          $Output = GenerateRSS(array
     142              (
     143                  'Title' => 'WoW překlad - Shoutbox',
     144                  'Link' => 'http://'.$this->System->Config['Web']['Host'].$this->System->Link('/'),
     145                  'Description' => 'Překlad textů WoW',
     146                  'WebmasterEmail' => $this->System->Config['Web']['AdminEmail'],
     147                  'Items' => $Items,
     148              ));
     149           return($Output);
     150        }
    122151}
Note: See TracChangeset for help on using the changeset viewer.