Commit 3cc7fe3367948e4e31ac91b258813979ab420b41

Authored by michael
1 parent 50ca9708

initial version


git-svn-id: https://kt-dms.svn.sourceforge.net/svnroot/kt-dms/trunk@1783 c91229c3-7414-0410-bfa2-8a42b809f60b
presentation/lookAndFeel/knowledgeTree/dashboard/news/displayNewsImage.php 0 → 100644
  1 +<?php
  2 +
  3 +require_once("../../../../../config/dmsDefaults.php");
  4 +require_once("$default->fileSystemRoot/lib/dashboard/DashboardNews.inc");
  5 +
  6 +/**
  7 + * $Id$
  8 + *
  9 + * Displays a news item image
  10 + *
  11 + * Licensed under the GNU GPL. For full terms see the file DOCS/COPYING.
  12 + *
  13 + * @version $Revision$
  14 + * @author Michael Joseph <michael@jamwarehouse.com>, Jam Warehouse (Pty) Ltd, South Africa
  15 + * @package presentation.lookAndFeel.knowledgeTree.administration.news
  16 + */
  17 +if (isset($fNewsID)) {
  18 + $oNews = DashboardNews::get($fNewsID);
  19 + $oNews->displayImage();
  20 +}
0 21 \ No newline at end of file
... ...