mirror of
https://github.com/silverstripe/silverstripe-blog
synced 2024-10-22 11:05:58 +02:00
54 lines
876 B
PHP
54 lines
876 B
PHP
<?php
|
|
|
|
/**
|
|
* @deprecated since version 2.0
|
|
*/
|
|
class BlogTree extends Page implements MigratableObject {
|
|
/**
|
|
* @var string
|
|
*/
|
|
private static $hide_ancestor = 'BlogTree';
|
|
|
|
/**
|
|
* @var array
|
|
*/
|
|
private static $db = array(
|
|
'Name' => 'Varchar(255)',
|
|
'LandingPageFreshness' => 'Varchar',
|
|
);
|
|
|
|
/**
|
|
* {@inheritdoc}
|
|
*/
|
|
public function canCreate($member = null) {
|
|
return false;
|
|
}
|
|
|
|
/**
|
|
* {@inheritdoc}
|
|
*/
|
|
public function up() {
|
|
$published = $this->IsPublished();
|
|
if($this->ClassName === 'BlogTree') {
|
|
$this->ClassName = 'Page';
|
|
$this->RecordClassName = 'Page';
|
|
$this->write();
|
|
}
|
|
if($published){
|
|
$this->publish('Stage','Live');
|
|
$message = "PUBLISHED: ";
|
|
} else {
|
|
$message = "DRAFT: ";
|
|
}
|
|
|
|
return $message . $this->Title;
|
|
}
|
|
}
|
|
|
|
/**
|
|
* @deprecated since version 2.0
|
|
*/
|
|
class BlogTree_Controller extends Page_Controller {
|
|
|
|
}
|