1.x version

ExtensionsΒΆ

The core of Extensions.

  • get($extension_name) - get instance of an existing active extension.

    echo fw()->extensions->get('blog')->get_name();
    
  • locate_path($rel_path, ...) - search full path of the file by given relative path. Will search in child theme then in parent theme then in framework. These are the places where an extension can be. By default will search in all places, you can specify only the places you want.

    Hint

    Check in framework/core/extends/class-fw-extension.php to see examples of how this method is used.

  • locate_path_URI($rel_path, ...) - same as locate_path() but will return URI to that path instead of full path.