17488 Posts in 4473 Topics by 1978 members
|
Page:
1
|
Go to End | |
| Author | Topic: | 775 Views |
-
[[edited]] including code within a function

7 March 2008 at 5:47am Last edited: 7 March 2008 8:43am
using the tutorial code as an example, is it possible to call a function from an include file on
/**
* Defines the HomePage page type
*/class HomePage extends Page {
static $db = array(
);
static $has_one = array(
);}
class HomePage_Controller extends Page_Controller {
function LatestNews() {
include('FunctionLatestNews.php')
}}
?>where FunctionLatestNews.php contains the following code:
$news = DataObject::get_one("ArticleHolder");
return ($news) ? DataObject::get("ArticlePage", "ParentID = $news->ID", "Date DESC", "", 5) : false;just thinking where this code could be reused on other page controllers.
| 775 Views | ||
|
Page:
1
|
Go to Top |

