Exemplo n.º 1
0
 /**
  * Execute the console command.
  *
  * @return void
  */
 public function fire()
 {
     // Generate groups sitemap
     $sitemap = App::make("sitemap");
     $x = 1;
     foreach (Group::all() as $group) {
         $sitemap->add(URL::to(route('group_contents', $group->getKey())), null, '1.0', 'daily');
         $sitemap->add(URL::to(route('group_contents_new', $group->getKey())), null, '1.0', 'daily');
         $sitemap->add(URL::to(route('group_entries', $group->getKey())), null, '1.0', 'daily');
         if (!($x % 100)) {
             $this->info($x . ' groups processed');
         }
         $x++;
     }
     $this->info('All groups processed');
     $sitemap->store('xml', 'sitemap-groups');
     unset($sitemap);
     // Generate entries sitemap
     $sitemap = App::make("sitemap");
     $x = 1;
     foreach (Content::all() as $content) {
         $route = route('content_comments_slug', [$content->getKey(), Str::slug($content->title)]);
         $sitemap->add(URL::to($route), $content->modified_at, '1.0', 'daily');
         if (!($x % 100)) {
             $this->info($x . ' contents processed');
         }
         $x++;
     }
     $this->info('All contents processed');
     $sitemap->store('xml', 'sitemap-contents');
     unset($sitemap);
     // Generate contents sitemap
     $sitemap = App::make("sitemap");
     $x = 1;
     foreach (Entry::all() as $entry) {
         $route = route('single_entry', $entry->getKey());
         $sitemap->add(URL::to($route), $entry->modified_at, '1.0', 'daily');
         if (!($x % 100)) {
             $this->info($x . ' entries processed');
         }
         $x++;
     }
     $this->info('All entries processed');
     $sitemap->store('xml', 'sitemap-entries');
     unset($sitemap);
     // Generate global sitemap
     $sitemap = App::make("sitemap");
     $sitemap->addSitemap(URL::to('sitemap-groups.xml'));
     $sitemap->addSitemap(URL::to('sitemap-contents.xml'));
     $sitemap->addSitemap(URL::to('sitemap-entries.xml'));
     $sitemap->store('sitemapindex', 'sitemap');
 }
Exemplo n.º 2
0
 function index($params)
 {
     $number_of_posts = get_option('number_of_posts', $params['id']);
     if ($number_of_posts == false) {
         $number_of_posts = 5;
     }
     $number_of_posts = (int) $number_of_posts;
     //d($number_of_posts);
     //$posts = \Content::where('id', '!=',0)->take(intval($number_of_posts))->get()->toArray();
     //$posts = \Content::items()->take($number_of_posts)->get()->toArray();
     // d(\DB::getQueryLog());
     $posts = \Content::all()->take($number_of_posts);
     //  $posts = \Content::take($number_of_posts)->get();
     //d($posts);
     //$view = \View::make('mvc_example_blade::index')->withPosts($posts)->render();
     // dd($posts);
     // $view = \View::make('mvc_example_blade::index')->with('posts', $posts)->render();
     $view = \View::make('mvc_example_blade::index')->with('posts', $posts);
     //     print $view;
     return $view;
     //        print $view;
     //
     //        print 11111111;
 }
Exemplo n.º 3
0
 public function all()
 {
     return Content::all();
 }
Exemplo n.º 4
0
 public function indexContentEdit()
 {
     $contents = Content::all();
     return View::make('admin.contentedit.index')->withContents($contents);
 }
Exemplo n.º 5
0
 public function contents()
 {
     return View::make('content.content-list')->withContents(Content::all());
 }