Search code examples
pluginsmodelsoctobercms

List all the namespaces and plugins (Octobercms)


I am new to octobercms, I want to list all the existing namespaces and plugins and models in my project, how can I do it?


Solution

  • https://secure.php.net/manual/en/function.get-declared-classes.php

    echo dump(get_declared_classes());
    

    or

    dd(get_declared_classes());