Esempio n. 1
0
 public function install()
 {
     $home_page = array('title' => 'Home', 'slug' => 'home', 'body' => File::get(dirname(__FILE__) . DS . 'data' . DS . 'home_body.html'), 'uri' => '', 'parent_id' => '0', 'revision_id' => '0', 'layout_id' => '0', 'class' => '', 'meta_title' => '', 'meta_keywords' => '', 'meta_description' => '', 'rss_enabled' => '0', 'comments_enabled' => '0', 'status' => 'live', 'restricted_to' => '0', 'is_home' => '1', 'is_core' => '1', 'strict_uri' => '1', 'order' => '1');
     $home = Pages\Model\Page::create($home_page);
     $not_found = array('title' => 'Page missing (404)', 'slug' => '404', 'body' => File::get(dirname(__FILE__) . DS . 'data' . DS . '404_body.html'), 'uri' => '', 'parent_id' => '0', 'revision_id' => '0', 'layout_id' => '0', 'class' => '', 'meta_title' => '', 'meta_keywords' => '', 'meta_description' => '', 'rss_enabled' => '0', 'comments_enabled' => '0', 'status' => 'live', 'restricted_to' => '0', 'is_home' => '0', 'is_core' => '1', 'strict_uri' => '1', 'order' => '2');
     $n_found = Pages\Model\Page::create($not_found);
     $about_us = array('title' => 'About Us', 'slug' => 'about-us', 'body' => File::get(dirname(__FILE__) . DS . 'data' . DS . 'about_us_body.html'), 'uri' => '', 'parent_id' => '0', 'revision_id' => '0', 'layout_id' => '0', 'class' => '', 'meta_title' => '', 'meta_keywords' => '', 'meta_description' => '', 'rss_enabled' => '0', 'comments_enabled' => '0', 'status' => 'live', 'restricted_to' => '0', 'is_home' => '0', 'is_core' => '1', 'strict_uri' => '1', 'order' => '2');
     $a_us = Pages\Model\Page::create($about_us);
 }