bludit/admin/controllers/dashboard.php

34 lines
880 B
PHP
Raw Normal View History

2015-06-26 01:31:53 -03:00
<?php defined('BLUDIT') or die('Bludit CMS.');
2015-03-27 01:00:01 +00:00
2015-06-26 01:31:53 -03:00
// ============================================================================
// Functions
// ============================================================================
2015-03-27 01:00:01 +00:00
2015-06-26 01:31:53 -03:00
// ============================================================================
// POST Method
// ============================================================================
// ============================================================================
// Main
// ============================================================================
$_newPosts = $dbPosts->regenerate();
$_newPages = $dbPages->regenerate();
2015-07-26 21:29:47 -03:00
$_draftPosts = array();
foreach($posts as $Post)
{
if(!$Post->published()) {
array_push($_draftPosts, $Post);
}
}
$_draftPages = array();
foreach($pages as $Page)
{
if(!$Page->published()) {
array_push($_draftPages, $Page);
}
}