├── LICENCE.md ├── Plugin.php ├── README.md ├── UPGRADE.md ├── assets ├── css │ └── statistics.css └── images │ └── news-icon.svg ├── classes ├── ConfirmationHandler.php ├── ConfirmationMail.php ├── Logger.php ├── NewsSender.php ├── NewsletterMail.php ├── SendNews.php └── SubscriberService.php ├── components ├── Categories.php ├── Post.php ├── Posts.php ├── Subscribe.php ├── Tags.php ├── Unsubscribe.php ├── categories │ └── default.htm ├── post │ └── default.htm ├── posts │ └── default.htm ├── subscribe │ └── default.htm ├── tags │ └── default.htm └── unsubscribe │ └── default.htm ├── composer.json ├── config └── config.php ├── controllers ├── Categories.php ├── Logs.php ├── Newsletter.php ├── Posts.php ├── Statistics.php ├── Subscribers.php ├── categories │ ├── _list_toolbar.htm │ ├── _posts.htm │ ├── _reorder_toolbar.htm │ ├── _show_image.htm │ ├── config_filter.yaml │ ├── config_form.yaml │ ├── config_list.yaml │ ├── config_relation.yaml │ ├── config_reorder.yaml │ ├── create.htm │ ├── index.htm │ ├── reorder.htm │ └── update.htm ├── logs │ ├── config_filter.yaml │ ├── config_form.yaml │ ├── config_list.yaml │ └── index.htm ├── posts │ ├── _categories.htm │ ├── _list_toolbar.htm │ ├── _show_image.htm │ ├── _show_stat.htm │ ├── config_filter.yaml │ ├── config_form.yaml │ ├── config_import_export.yaml │ ├── config_list.yaml │ ├── config_relation.yaml │ ├── create.htm │ ├── export.htm │ ├── import.htm │ ├── index.htm │ └── update.htm ├── statistics │ └── index.htm └── subscribers │ ├── _list_toolbar.htm │ ├── _show_emails.htm │ ├── _show_stat.htm │ ├── config_filter.yaml │ ├── config_form.yaml │ ├── config_import_export.yaml │ ├── config_list.yaml │ ├── create.htm │ ├── export.htm │ ├── import.htm │ ├── index.htm │ └── update.htm ├── formwidgets ├── CategoryInfo.php ├── PostInfo.php ├── SubscriberInfo.php ├── categoryinfo │ └── partials │ │ └── _categoryinfo.htm ├── postinfo │ └── partials │ │ └── _postinfo.htm └── subscriberinfo │ └── partials │ └── _subscriberinfo.htm ├── lang ├── de │ └── lang.php ├── en │ └── lang.php ├── hu │ └── lang.php ├── pl │ └── lang.php ├── pt-br │ └── lang.php ├── ru │ └── lang.php ├── vn │ └── lang.php └── zh-tw │ └── lang.php ├── models ├── Categories.php ├── Logs.php ├── Posts.php ├── PostsExport.php ├── PostsImport.php ├── Settings.php ├── Subscribers.php ├── SubscribersExport.php ├── SubscribersImport.php ├── categories │ ├── _hidden.htm │ ├── _image.htm │ ├── _subscribers.htm │ ├── columns.yaml │ └── fields.yaml ├── logs │ ├── _status.htm │ └── columns.yaml ├── posts │ ├── _author.htm │ ├── _categories.htm │ ├── _featured.htm │ ├── _image.htm │ ├── _length.htm │ ├── _stat.htm │ ├── _status.htm │ ├── _tags.htm │ ├── columns.yaml │ └── fields.yaml ├── postsexport │ └── columns.yaml ├── postsimport │ ├── columns.yaml │ └── fields.yaml ├── settings │ ├── _email_view_tracking_warning.htm │ └── fields.yaml ├── subscribers │ ├── _category.htm │ ├── _locale.htm │ ├── _stat.htm │ ├── _statistics.htm │ ├── _status.htm │ ├── columns.yaml │ └── fields.yaml ├── subscribersexport │ └── columns.yaml └── subscribersimport │ └── columns.yaml ├── reportwidgets ├── NewPosts.php ├── Posts.php ├── Subscribers.php ├── TopPosts.php ├── newposts │ └── partials │ │ └── _widget.htm ├── posts │ └── partials │ │ └── _widget.htm ├── subscribers │ └── partials │ │ └── _widget.htm └── topposts │ └── partials │ └── _widget.htm ├── updates ├── add_category_field_to_table.php ├── add_image_field_to_table.php ├── add_locale_field_to_table.php ├── add_nested_categories_support.php ├── add_new_fields_to_table.php ├── add_prefix_to_tables.php ├── add_seo_fields_to_table.php ├── add_tags_field_to_table.php ├── add_user_field_to_table.php ├── adding_custom_newsletter_content_fields_to_posts.php ├── adding_gdpr_fields_for_subscribers.php ├── change_columns_type.php ├── change_columns_type_2.php ├── change_varchar_length.php ├── common_rename_comment.php ├── create_categories_table.php ├── create_logs_table.php ├── create_posts_categories_table.php ├── create_posts_table.php ├── create_subscribers_table.php ├── update_send_feature.php ├── update_send_feature_2.php ├── update_timestamp_nullable.php └── version.yaml └── views └── mail ├── confirmation_en.htm ├── confirmation_hu.htm ├── email_en.htm ├── email_hu.htm └── layout-newsletter.htm /LICENCE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gergo85/oc-news/HEAD/LICENCE.md -------------------------------------------------------------------------------- /Plugin.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gergo85/oc-news/HEAD/Plugin.php -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gergo85/oc-news/HEAD/README.md -------------------------------------------------------------------------------- /UPGRADE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gergo85/oc-news/HEAD/UPGRADE.md -------------------------------------------------------------------------------- /assets/css/statistics.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gergo85/oc-news/HEAD/assets/css/statistics.css -------------------------------------------------------------------------------- /assets/images/news-icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gergo85/oc-news/HEAD/assets/images/news-icon.svg -------------------------------------------------------------------------------- /classes/ConfirmationHandler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gergo85/oc-news/HEAD/classes/ConfirmationHandler.php -------------------------------------------------------------------------------- /classes/ConfirmationMail.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gergo85/oc-news/HEAD/classes/ConfirmationMail.php -------------------------------------------------------------------------------- /classes/Logger.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gergo85/oc-news/HEAD/classes/Logger.php -------------------------------------------------------------------------------- /classes/NewsSender.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gergo85/oc-news/HEAD/classes/NewsSender.php -------------------------------------------------------------------------------- /classes/NewsletterMail.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gergo85/oc-news/HEAD/classes/NewsletterMail.php -------------------------------------------------------------------------------- /classes/SendNews.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gergo85/oc-news/HEAD/classes/SendNews.php -------------------------------------------------------------------------------- /classes/SubscriberService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gergo85/oc-news/HEAD/classes/SubscriberService.php -------------------------------------------------------------------------------- /components/Categories.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gergo85/oc-news/HEAD/components/Categories.php -------------------------------------------------------------------------------- /components/Post.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gergo85/oc-news/HEAD/components/Post.php -------------------------------------------------------------------------------- /components/Posts.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gergo85/oc-news/HEAD/components/Posts.php -------------------------------------------------------------------------------- /components/Subscribe.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gergo85/oc-news/HEAD/components/Subscribe.php -------------------------------------------------------------------------------- /components/Tags.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gergo85/oc-news/HEAD/components/Tags.php -------------------------------------------------------------------------------- /components/Unsubscribe.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gergo85/oc-news/HEAD/components/Unsubscribe.php -------------------------------------------------------------------------------- /components/categories/default.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gergo85/oc-news/HEAD/components/categories/default.htm -------------------------------------------------------------------------------- /components/post/default.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gergo85/oc-news/HEAD/components/post/default.htm -------------------------------------------------------------------------------- /components/posts/default.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gergo85/oc-news/HEAD/components/posts/default.htm -------------------------------------------------------------------------------- /components/subscribe/default.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gergo85/oc-news/HEAD/components/subscribe/default.htm -------------------------------------------------------------------------------- /components/tags/default.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gergo85/oc-news/HEAD/components/tags/default.htm -------------------------------------------------------------------------------- /components/unsubscribe/default.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gergo85/oc-news/HEAD/components/unsubscribe/default.htm -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gergo85/oc-news/HEAD/composer.json -------------------------------------------------------------------------------- /config/config.php: -------------------------------------------------------------------------------- 1 | '128', 5 | ]; 6 | -------------------------------------------------------------------------------- /controllers/Categories.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gergo85/oc-news/HEAD/controllers/Categories.php -------------------------------------------------------------------------------- /controllers/Logs.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gergo85/oc-news/HEAD/controllers/Logs.php -------------------------------------------------------------------------------- /controllers/Newsletter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gergo85/oc-news/HEAD/controllers/Newsletter.php -------------------------------------------------------------------------------- /controllers/Posts.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gergo85/oc-news/HEAD/controllers/Posts.php -------------------------------------------------------------------------------- /controllers/Statistics.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gergo85/oc-news/HEAD/controllers/Statistics.php -------------------------------------------------------------------------------- /controllers/Subscribers.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gergo85/oc-news/HEAD/controllers/Subscribers.php -------------------------------------------------------------------------------- /controllers/categories/_list_toolbar.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gergo85/oc-news/HEAD/controllers/categories/_list_toolbar.htm -------------------------------------------------------------------------------- /controllers/categories/_posts.htm: -------------------------------------------------------------------------------- 1 | relationRender('all_posts'); ?> 2 | -------------------------------------------------------------------------------- /controllers/categories/_reorder_toolbar.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gergo85/oc-news/HEAD/controllers/categories/_reorder_toolbar.htm -------------------------------------------------------------------------------- /controllers/categories/_show_image.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gergo85/oc-news/HEAD/controllers/categories/_show_image.htm -------------------------------------------------------------------------------- /controllers/categories/config_filter.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gergo85/oc-news/HEAD/controllers/categories/config_filter.yaml -------------------------------------------------------------------------------- /controllers/categories/config_form.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gergo85/oc-news/HEAD/controllers/categories/config_form.yaml -------------------------------------------------------------------------------- /controllers/categories/config_list.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gergo85/oc-news/HEAD/controllers/categories/config_list.yaml -------------------------------------------------------------------------------- /controllers/categories/config_relation.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gergo85/oc-news/HEAD/controllers/categories/config_relation.yaml -------------------------------------------------------------------------------- /controllers/categories/config_reorder.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gergo85/oc-news/HEAD/controllers/categories/config_reorder.yaml -------------------------------------------------------------------------------- /controllers/categories/create.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gergo85/oc-news/HEAD/controllers/categories/create.htm -------------------------------------------------------------------------------- /controllers/categories/index.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gergo85/oc-news/HEAD/controllers/categories/index.htm -------------------------------------------------------------------------------- /controllers/categories/reorder.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gergo85/oc-news/HEAD/controllers/categories/reorder.htm -------------------------------------------------------------------------------- /controllers/categories/update.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gergo85/oc-news/HEAD/controllers/categories/update.htm -------------------------------------------------------------------------------- /controllers/logs/config_filter.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gergo85/oc-news/HEAD/controllers/logs/config_filter.yaml -------------------------------------------------------------------------------- /controllers/logs/config_form.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gergo85/oc-news/HEAD/controllers/logs/config_form.yaml -------------------------------------------------------------------------------- /controllers/logs/config_list.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gergo85/oc-news/HEAD/controllers/logs/config_list.yaml -------------------------------------------------------------------------------- /controllers/logs/index.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gergo85/oc-news/HEAD/controllers/logs/index.htm -------------------------------------------------------------------------------- /controllers/posts/_categories.htm: -------------------------------------------------------------------------------- 1 | relationRender('all_categories'); ?> 2 | -------------------------------------------------------------------------------- /controllers/posts/_list_toolbar.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gergo85/oc-news/HEAD/controllers/posts/_list_toolbar.htm -------------------------------------------------------------------------------- /controllers/posts/_show_image.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gergo85/oc-news/HEAD/controllers/posts/_show_image.htm -------------------------------------------------------------------------------- /controllers/posts/_show_stat.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gergo85/oc-news/HEAD/controllers/posts/_show_stat.htm -------------------------------------------------------------------------------- /controllers/posts/config_filter.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gergo85/oc-news/HEAD/controllers/posts/config_filter.yaml -------------------------------------------------------------------------------- /controllers/posts/config_form.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gergo85/oc-news/HEAD/controllers/posts/config_form.yaml -------------------------------------------------------------------------------- /controllers/posts/config_import_export.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gergo85/oc-news/HEAD/controllers/posts/config_import_export.yaml -------------------------------------------------------------------------------- /controllers/posts/config_list.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gergo85/oc-news/HEAD/controllers/posts/config_list.yaml -------------------------------------------------------------------------------- /controllers/posts/config_relation.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gergo85/oc-news/HEAD/controllers/posts/config_relation.yaml -------------------------------------------------------------------------------- /controllers/posts/create.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gergo85/oc-news/HEAD/controllers/posts/create.htm -------------------------------------------------------------------------------- /controllers/posts/export.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gergo85/oc-news/HEAD/controllers/posts/export.htm -------------------------------------------------------------------------------- /controllers/posts/import.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gergo85/oc-news/HEAD/controllers/posts/import.htm -------------------------------------------------------------------------------- /controllers/posts/index.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gergo85/oc-news/HEAD/controllers/posts/index.htm -------------------------------------------------------------------------------- /controllers/posts/update.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gergo85/oc-news/HEAD/controllers/posts/update.htm -------------------------------------------------------------------------------- /controllers/statistics/index.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gergo85/oc-news/HEAD/controllers/statistics/index.htm -------------------------------------------------------------------------------- /controllers/subscribers/_list_toolbar.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gergo85/oc-news/HEAD/controllers/subscribers/_list_toolbar.htm -------------------------------------------------------------------------------- /controllers/subscribers/_show_emails.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gergo85/oc-news/HEAD/controllers/subscribers/_show_emails.htm -------------------------------------------------------------------------------- /controllers/subscribers/_show_stat.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gergo85/oc-news/HEAD/controllers/subscribers/_show_stat.htm -------------------------------------------------------------------------------- /controllers/subscribers/config_filter.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gergo85/oc-news/HEAD/controllers/subscribers/config_filter.yaml -------------------------------------------------------------------------------- /controllers/subscribers/config_form.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gergo85/oc-news/HEAD/controllers/subscribers/config_form.yaml -------------------------------------------------------------------------------- /controllers/subscribers/config_import_export.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gergo85/oc-news/HEAD/controllers/subscribers/config_import_export.yaml -------------------------------------------------------------------------------- /controllers/subscribers/config_list.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gergo85/oc-news/HEAD/controllers/subscribers/config_list.yaml -------------------------------------------------------------------------------- /controllers/subscribers/create.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gergo85/oc-news/HEAD/controllers/subscribers/create.htm -------------------------------------------------------------------------------- /controllers/subscribers/export.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gergo85/oc-news/HEAD/controllers/subscribers/export.htm -------------------------------------------------------------------------------- /controllers/subscribers/import.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gergo85/oc-news/HEAD/controllers/subscribers/import.htm -------------------------------------------------------------------------------- /controllers/subscribers/index.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gergo85/oc-news/HEAD/controllers/subscribers/index.htm -------------------------------------------------------------------------------- /controllers/subscribers/update.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gergo85/oc-news/HEAD/controllers/subscribers/update.htm -------------------------------------------------------------------------------- /formwidgets/CategoryInfo.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gergo85/oc-news/HEAD/formwidgets/CategoryInfo.php -------------------------------------------------------------------------------- /formwidgets/PostInfo.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gergo85/oc-news/HEAD/formwidgets/PostInfo.php -------------------------------------------------------------------------------- /formwidgets/SubscriberInfo.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gergo85/oc-news/HEAD/formwidgets/SubscriberInfo.php -------------------------------------------------------------------------------- /formwidgets/categoryinfo/partials/_categoryinfo.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gergo85/oc-news/HEAD/formwidgets/categoryinfo/partials/_categoryinfo.htm -------------------------------------------------------------------------------- /formwidgets/postinfo/partials/_postinfo.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gergo85/oc-news/HEAD/formwidgets/postinfo/partials/_postinfo.htm -------------------------------------------------------------------------------- /formwidgets/subscriberinfo/partials/_subscriberinfo.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gergo85/oc-news/HEAD/formwidgets/subscriberinfo/partials/_subscriberinfo.htm -------------------------------------------------------------------------------- /lang/de/lang.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gergo85/oc-news/HEAD/lang/de/lang.php -------------------------------------------------------------------------------- /lang/en/lang.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gergo85/oc-news/HEAD/lang/en/lang.php -------------------------------------------------------------------------------- /lang/hu/lang.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gergo85/oc-news/HEAD/lang/hu/lang.php -------------------------------------------------------------------------------- /lang/pl/lang.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gergo85/oc-news/HEAD/lang/pl/lang.php -------------------------------------------------------------------------------- /lang/pt-br/lang.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gergo85/oc-news/HEAD/lang/pt-br/lang.php -------------------------------------------------------------------------------- /lang/ru/lang.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gergo85/oc-news/HEAD/lang/ru/lang.php -------------------------------------------------------------------------------- /lang/vn/lang.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gergo85/oc-news/HEAD/lang/vn/lang.php -------------------------------------------------------------------------------- /lang/zh-tw/lang.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gergo85/oc-news/HEAD/lang/zh-tw/lang.php -------------------------------------------------------------------------------- /models/Categories.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gergo85/oc-news/HEAD/models/Categories.php -------------------------------------------------------------------------------- /models/Logs.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gergo85/oc-news/HEAD/models/Logs.php -------------------------------------------------------------------------------- /models/Posts.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gergo85/oc-news/HEAD/models/Posts.php -------------------------------------------------------------------------------- /models/PostsExport.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gergo85/oc-news/HEAD/models/PostsExport.php -------------------------------------------------------------------------------- /models/PostsImport.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gergo85/oc-news/HEAD/models/PostsImport.php -------------------------------------------------------------------------------- /models/Settings.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gergo85/oc-news/HEAD/models/Settings.php -------------------------------------------------------------------------------- /models/Subscribers.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gergo85/oc-news/HEAD/models/Subscribers.php -------------------------------------------------------------------------------- /models/SubscribersExport.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gergo85/oc-news/HEAD/models/SubscribersExport.php -------------------------------------------------------------------------------- /models/SubscribersImport.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gergo85/oc-news/HEAD/models/SubscribersImport.php -------------------------------------------------------------------------------- /models/categories/_hidden.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gergo85/oc-news/HEAD/models/categories/_hidden.htm -------------------------------------------------------------------------------- /models/categories/_image.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gergo85/oc-news/HEAD/models/categories/_image.htm -------------------------------------------------------------------------------- /models/categories/_subscribers.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gergo85/oc-news/HEAD/models/categories/_subscribers.htm -------------------------------------------------------------------------------- /models/categories/columns.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gergo85/oc-news/HEAD/models/categories/columns.yaml -------------------------------------------------------------------------------- /models/categories/fields.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gergo85/oc-news/HEAD/models/categories/fields.yaml -------------------------------------------------------------------------------- /models/logs/_status.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gergo85/oc-news/HEAD/models/logs/_status.htm -------------------------------------------------------------------------------- /models/logs/columns.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gergo85/oc-news/HEAD/models/logs/columns.yaml -------------------------------------------------------------------------------- /models/posts/_author.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gergo85/oc-news/HEAD/models/posts/_author.htm -------------------------------------------------------------------------------- /models/posts/_categories.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gergo85/oc-news/HEAD/models/posts/_categories.htm -------------------------------------------------------------------------------- /models/posts/_featured.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gergo85/oc-news/HEAD/models/posts/_featured.htm -------------------------------------------------------------------------------- /models/posts/_image.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gergo85/oc-news/HEAD/models/posts/_image.htm -------------------------------------------------------------------------------- /models/posts/_length.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gergo85/oc-news/HEAD/models/posts/_length.htm -------------------------------------------------------------------------------- /models/posts/_stat.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gergo85/oc-news/HEAD/models/posts/_stat.htm -------------------------------------------------------------------------------- /models/posts/_status.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gergo85/oc-news/HEAD/models/posts/_status.htm -------------------------------------------------------------------------------- /models/posts/_tags.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gergo85/oc-news/HEAD/models/posts/_tags.htm -------------------------------------------------------------------------------- /models/posts/columns.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gergo85/oc-news/HEAD/models/posts/columns.yaml -------------------------------------------------------------------------------- /models/posts/fields.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gergo85/oc-news/HEAD/models/posts/fields.yaml -------------------------------------------------------------------------------- /models/postsexport/columns.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gergo85/oc-news/HEAD/models/postsexport/columns.yaml -------------------------------------------------------------------------------- /models/postsimport/columns.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gergo85/oc-news/HEAD/models/postsimport/columns.yaml -------------------------------------------------------------------------------- /models/postsimport/fields.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gergo85/oc-news/HEAD/models/postsimport/fields.yaml -------------------------------------------------------------------------------- /models/settings/_email_view_tracking_warning.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gergo85/oc-news/HEAD/models/settings/_email_view_tracking_warning.htm -------------------------------------------------------------------------------- /models/settings/fields.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gergo85/oc-news/HEAD/models/settings/fields.yaml -------------------------------------------------------------------------------- /models/subscribers/_category.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gergo85/oc-news/HEAD/models/subscribers/_category.htm -------------------------------------------------------------------------------- /models/subscribers/_locale.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gergo85/oc-news/HEAD/models/subscribers/_locale.htm -------------------------------------------------------------------------------- /models/subscribers/_stat.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gergo85/oc-news/HEAD/models/subscribers/_stat.htm -------------------------------------------------------------------------------- /models/subscribers/_statistics.htm: -------------------------------------------------------------------------------- 1 | statistics.' '.Lang::get('indikator.news::lang.form.mail'); 4 | -------------------------------------------------------------------------------- /models/subscribers/_status.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gergo85/oc-news/HEAD/models/subscribers/_status.htm -------------------------------------------------------------------------------- /models/subscribers/columns.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gergo85/oc-news/HEAD/models/subscribers/columns.yaml -------------------------------------------------------------------------------- /models/subscribers/fields.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gergo85/oc-news/HEAD/models/subscribers/fields.yaml -------------------------------------------------------------------------------- /models/subscribersexport/columns.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gergo85/oc-news/HEAD/models/subscribersexport/columns.yaml -------------------------------------------------------------------------------- /models/subscribersimport/columns.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gergo85/oc-news/HEAD/models/subscribersimport/columns.yaml -------------------------------------------------------------------------------- /reportwidgets/NewPosts.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gergo85/oc-news/HEAD/reportwidgets/NewPosts.php -------------------------------------------------------------------------------- /reportwidgets/Posts.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gergo85/oc-news/HEAD/reportwidgets/Posts.php -------------------------------------------------------------------------------- /reportwidgets/Subscribers.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gergo85/oc-news/HEAD/reportwidgets/Subscribers.php -------------------------------------------------------------------------------- /reportwidgets/TopPosts.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gergo85/oc-news/HEAD/reportwidgets/TopPosts.php -------------------------------------------------------------------------------- /reportwidgets/newposts/partials/_widget.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gergo85/oc-news/HEAD/reportwidgets/newposts/partials/_widget.htm -------------------------------------------------------------------------------- /reportwidgets/posts/partials/_widget.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gergo85/oc-news/HEAD/reportwidgets/posts/partials/_widget.htm -------------------------------------------------------------------------------- /reportwidgets/subscribers/partials/_widget.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gergo85/oc-news/HEAD/reportwidgets/subscribers/partials/_widget.htm -------------------------------------------------------------------------------- /reportwidgets/topposts/partials/_widget.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gergo85/oc-news/HEAD/reportwidgets/topposts/partials/_widget.htm -------------------------------------------------------------------------------- /updates/add_category_field_to_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gergo85/oc-news/HEAD/updates/add_category_field_to_table.php -------------------------------------------------------------------------------- /updates/add_image_field_to_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gergo85/oc-news/HEAD/updates/add_image_field_to_table.php -------------------------------------------------------------------------------- /updates/add_locale_field_to_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gergo85/oc-news/HEAD/updates/add_locale_field_to_table.php -------------------------------------------------------------------------------- /updates/add_nested_categories_support.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gergo85/oc-news/HEAD/updates/add_nested_categories_support.php -------------------------------------------------------------------------------- /updates/add_new_fields_to_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gergo85/oc-news/HEAD/updates/add_new_fields_to_table.php -------------------------------------------------------------------------------- /updates/add_prefix_to_tables.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gergo85/oc-news/HEAD/updates/add_prefix_to_tables.php -------------------------------------------------------------------------------- /updates/add_seo_fields_to_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gergo85/oc-news/HEAD/updates/add_seo_fields_to_table.php -------------------------------------------------------------------------------- /updates/add_tags_field_to_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gergo85/oc-news/HEAD/updates/add_tags_field_to_table.php -------------------------------------------------------------------------------- /updates/add_user_field_to_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gergo85/oc-news/HEAD/updates/add_user_field_to_table.php -------------------------------------------------------------------------------- /updates/adding_custom_newsletter_content_fields_to_posts.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gergo85/oc-news/HEAD/updates/adding_custom_newsletter_content_fields_to_posts.php -------------------------------------------------------------------------------- /updates/adding_gdpr_fields_for_subscribers.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gergo85/oc-news/HEAD/updates/adding_gdpr_fields_for_subscribers.php -------------------------------------------------------------------------------- /updates/change_columns_type.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gergo85/oc-news/HEAD/updates/change_columns_type.php -------------------------------------------------------------------------------- /updates/change_columns_type_2.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gergo85/oc-news/HEAD/updates/change_columns_type_2.php -------------------------------------------------------------------------------- /updates/change_varchar_length.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gergo85/oc-news/HEAD/updates/change_varchar_length.php -------------------------------------------------------------------------------- /updates/common_rename_comment.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gergo85/oc-news/HEAD/updates/common_rename_comment.php -------------------------------------------------------------------------------- /updates/create_categories_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gergo85/oc-news/HEAD/updates/create_categories_table.php -------------------------------------------------------------------------------- /updates/create_logs_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gergo85/oc-news/HEAD/updates/create_logs_table.php -------------------------------------------------------------------------------- /updates/create_posts_categories_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gergo85/oc-news/HEAD/updates/create_posts_categories_table.php -------------------------------------------------------------------------------- /updates/create_posts_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gergo85/oc-news/HEAD/updates/create_posts_table.php -------------------------------------------------------------------------------- /updates/create_subscribers_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gergo85/oc-news/HEAD/updates/create_subscribers_table.php -------------------------------------------------------------------------------- /updates/update_send_feature.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gergo85/oc-news/HEAD/updates/update_send_feature.php -------------------------------------------------------------------------------- /updates/update_send_feature_2.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gergo85/oc-news/HEAD/updates/update_send_feature_2.php -------------------------------------------------------------------------------- /updates/update_timestamp_nullable.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gergo85/oc-news/HEAD/updates/update_timestamp_nullable.php -------------------------------------------------------------------------------- /updates/version.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gergo85/oc-news/HEAD/updates/version.yaml -------------------------------------------------------------------------------- /views/mail/confirmation_en.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gergo85/oc-news/HEAD/views/mail/confirmation_en.htm -------------------------------------------------------------------------------- /views/mail/confirmation_hu.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gergo85/oc-news/HEAD/views/mail/confirmation_hu.htm -------------------------------------------------------------------------------- /views/mail/email_en.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gergo85/oc-news/HEAD/views/mail/email_en.htm -------------------------------------------------------------------------------- /views/mail/email_hu.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gergo85/oc-news/HEAD/views/mail/email_hu.htm -------------------------------------------------------------------------------- /views/mail/layout-newsletter.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gergo85/oc-news/HEAD/views/mail/layout-newsletter.htm --------------------------------------------------------------------------------