Faq

Here is what You asked us about Atlantis CMS.

  • What is Atlantis CMS?

    Atlantis CMS is open source web software that you can install on your web server to create your website, blog, community or network.
  • Why choose Atlantis CMS?

    One of the principal advantages of Atlantis is that you are in control. Unlike remote-hosted scripts such as Blogger and LiveJournal, you host Atlantis on your own server. Installation is very simple, as is the configuration.
  • What are Atlantis CMS features?

    Atlantis has an extensive list of features and, as it is constantly evolving, this list of features is constantly growing.
  • Retrieving an image by ID

    MediaTools::getImage((int) [image_id])
  • Invoking the editor in a View

    Editor::set((string) [instance name], (string) [initial_value])
  • Create Image Gallery Selector in your Admin Views

    MediaTools::createGallerySelector((int) $selected_gallery = 0)
  • Get Images in a Gallery

    MediaTools::getImagesByGallery((int) $gallery_id)
  • I just generated a module and its not showing in the list of available modules?

    By default the route to the module is commented out so the system can't load it - you need to uncomment that in the module's route file.
  • My validation messages are not loading in the module?

    In the module's Provider class in the boot() method you need to uncomment the loadTranslationsFrom method.
  • How to provide sitemap.xml with results from my module?

    In the module's check the Models\Sitemap class. All you need to do is return an array from it and your results will be populated in the global sitemap.xml file.
  • I need to redirect from within a loaded page?

    If you are calling some module inside a page and need to redirect you can't use the regular Laravel redirect because the headers have been outputted already. You need to use AtlantisRedirect Helper like:
    app('AtlantisRedirect')->set('redirect()->to(...)')
  • How to clear Cache with Atlantis Cache Helper?

    use Atlantis\Helpers\Cache\AtlantisCache;
    AtlantisCache::clearAll();