Giter Site home page Giter Site logo

zeraton-de / cockpit-docs Goto Github PK

View Code? Open in Web Editor NEW
7.0 2.0 7.0 3.38 MB

Unofficial docs for Cockpit CMS based on VuePress.

Home Page: https://zeraton.gitlab.io/cockpit-docs/

License: MIT License

JavaScript 100.00%
cockpit-cms vuepress docs markdown

cockpit-docs's People

Contributors

benada002 avatar dependabot[bot] avatar jankal avatar jonasholbech avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar

cockpit-docs's Issues

new content: very simple logging as a debug helper

I wrote a very simple helper to log variables for debugging and I updated my debug notes here.

Add this code snippet to the bootstrap of your addon or in config/bootstrap.php. Now you can call it from everywhere with debug($variable); and it writes a new line to /storage/tmp/.log.txt. I named it .log with a starting dot to let the .htaccess deny public access to it.

// simple logging for debugging
function debug($message) {

    global $cockpit;

    if (!is_string($message) || !is_numeric($message))
        $message = json_encode($message);

    $time = date('Y-m-d H:i:s', time());

    $cockpit('fs')->write("#storage:tmp/.log.txt", "$time - $message\r\n", FILE_APPEND);

}

I have to finish two projects before I can have a deeper look at this repo. Soon...

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.