gitextract_3yank7zg/ ├── Api/ │ ├── AuthorRepositoryInterface.php │ └── Data/ │ ├── AuthorInterface.php │ └── AuthorSearchResultsInterface.php ├── Block/ │ ├── Adminhtml/ │ │ └── Author/ │ │ └── Edit/ │ │ └── Buttons/ │ │ ├── Back.php │ │ ├── Delete.php │ │ ├── Generic.php │ │ ├── Reset.php │ │ ├── Save.php │ │ └── SaveAndContinue.php │ ├── Author/ │ │ ├── ListAuthor/ │ │ │ ├── Rss/ │ │ │ │ └── Link.php │ │ │ └── Rss.php │ │ ├── ListAuthor.php │ │ └── ViewAuthor.php │ ├── Image.php │ └── ImageBuilder.php ├── Controller/ │ ├── Adminhtml/ │ │ ├── Author/ │ │ │ ├── Delete.php │ │ │ ├── Edit.php │ │ │ ├── File/ │ │ │ │ └── Upload.php │ │ │ ├── Image/ │ │ │ │ └── Upload.php │ │ │ ├── Index.php │ │ │ ├── InlineEdit.php │ │ │ ├── MassAction.php │ │ │ ├── MassDelete.php │ │ │ ├── MassDisable.php │ │ │ ├── MassEnable.php │ │ │ ├── NewAction.php │ │ │ ├── Save.php │ │ │ └── Upload.php │ │ └── Author.php │ ├── Author/ │ │ ├── Index.php │ │ ├── Rss.php │ │ └── View.php │ ├── RegistryConstants.php │ └── Router.php ├── Helper/ │ └── Image.php ├── LICENSE ├── Model/ │ ├── Author/ │ │ ├── DataProvider.php │ │ ├── Rss.php │ │ └── Url.php │ ├── Author.php │ ├── AuthorFactory.php │ ├── AuthorRepository.php │ ├── FactoryInterface.php │ ├── Image.php │ ├── Output.php │ ├── ResourceModel/ │ │ ├── Author/ │ │ │ ├── Collection.php │ │ │ └── Grid/ │ │ │ ├── Collection.php │ │ │ └── ServiceCollection.php │ │ └── Author.php │ ├── Routing/ │ │ ├── Entity.php │ │ └── RoutableInterface.php │ ├── Source/ │ │ ├── AbstractSource.php │ │ ├── Country.php │ │ └── Options.php │ ├── Uploader.php │ └── UploaderPool.php ├── Plugin/ │ └── Block/ │ └── Topmenu.php ├── README.md ├── Setup/ │ ├── InstallSchema.php │ └── Uninstall.php ├── Test/ │ └── Unit/ │ ├── Model/ │ │ ├── Author/ │ │ │ ├── DataProviderTest.php │ │ │ ├── RssTest.php │ │ │ └── UrlTest.php │ │ ├── AuthorTest.php │ │ ├── Source/ │ │ │ └── CountryTest.php │ │ ├── UploaderPoolTest.php │ │ └── UploaderTest.php │ └── Ui/ │ ├── Component/ │ │ └── Listing/ │ │ └── Column/ │ │ ├── AuthorActionsTest.php │ │ ├── AvatarTest.php │ │ └── Store/ │ │ └── OptionsTest.php │ └── DataProvider/ │ └── Author/ │ └── Form/ │ └── Modifier/ │ └── AuthorDataTest.php ├── Ui/ │ ├── Component/ │ │ └── Listing/ │ │ └── Column/ │ │ ├── AuthorActions.php │ │ ├── Avatar.php │ │ └── Store/ │ │ └── Options.php │ └── DataProvider/ │ └── Author/ │ └── Form/ │ └── Modifier/ │ └── AuthorData.php ├── composer.json ├── etc/ │ ├── acl.xml │ ├── adminhtml/ │ │ ├── di.xml │ │ ├── menu.xml │ │ ├── routes.xml │ │ └── system.xml │ ├── config.xml │ ├── di.xml │ ├── frontend/ │ │ ├── di.xml │ │ └── routes.xml │ └── module.xml ├── i18l/ │ └── en_US.csv ├── registration.php └── view/ ├── adminhtml/ │ ├── layout/ │ │ ├── sample_news_author_edit.xml │ │ └── sample_news_author_index.xml │ ├── ui_component/ │ │ ├── sample_news_author_form.xml │ │ └── sample_news_author_listing.xml │ └── web/ │ └── template/ │ ├── file-preview.html │ └── image-preview.html └── frontend/ ├── layout/ │ ├── sample_news_author_index.xml │ └── sample_news_author_view.xml └── templates/ ├── author/ │ ├── list.phtml │ └── view.phtml ├── image.phtml ├── image_with_borders.phtml └── rss/ └── link.phtml