phcdevworks_press 8.2.3 → 8.4.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (84) hide show
  1. checksums.yaml +4 -4
  2. data/MIT-LICENSE +20 -20
  3. data/README.md +33 -33
  4. data/Rakefile +8 -8
  5. data/app/assets/config/phcdevworks_press_manifest.js +3 -3
  6. data/app/assets/stylesheets/phcdevworks_press/application.scss +0 -0
  7. data/app/assets/stylesheets/phcdevworks_press/article/posts.scss +0 -0
  8. data/app/assets/stylesheets/phcdevworks_press/blog/articles.scss +0 -0
  9. data/app/assets/stylesheets/phcdevworks_press/list/items.scss +3 -3
  10. data/app/assets/stylesheets/phcdevworks_press/list/posts.scss +3 -3
  11. data/app/assets/stylesheets/phcdevworks_press/review/posts.scss +3 -3
  12. data/app/controllers/phcdevworks_press/application_controller.rb +13 -13
  13. data/app/controllers/phcdevworks_press/article/posts_controller.rb +83 -83
  14. data/app/controllers/phcdevworks_press/blog/articles_controller.rb +29 -29
  15. data/app/controllers/phcdevworks_press/blog/lists_controller.rb +29 -29
  16. data/app/controllers/phcdevworks_press/blog/reviews_controller.rb +29 -29
  17. data/app/controllers/phcdevworks_press/list/items_controller.rb +89 -89
  18. data/app/controllers/phcdevworks_press/list/posts_controller.rb +82 -82
  19. data/app/controllers/phcdevworks_press/review/posts_controller.rb +82 -82
  20. data/app/helpers/phcdevworks_press/application_helper.rb +4 -4
  21. data/app/helpers/phcdevworks_press/article/posts_helper.rb +4 -4
  22. data/app/helpers/phcdevworks_press/blog/articles_helper.rb +4 -4
  23. data/app/helpers/phcdevworks_press/list/items_helper.rb +4 -4
  24. data/app/helpers/phcdevworks_press/list/posts_helper.rb +4 -4
  25. data/app/helpers/phcdevworks_press/review/posts_helper.rb +4 -4
  26. data/app/jobs/phcdevworks_press/application_job.rb +4 -4
  27. data/app/mailers/phcdevworks_press/application_mailer.rb +6 -6
  28. data/app/models/phcdevworks_press/application_record.rb +5 -5
  29. data/app/models/phcdevworks_press/article/post.rb +34 -34
  30. data/app/models/phcdevworks_press/article.rb +7 -7
  31. data/app/models/phcdevworks_press/article_post_versions.rb +0 -0
  32. data/app/models/phcdevworks_press/list/item.rb +33 -33
  33. data/app/models/phcdevworks_press/list/post.rb +34 -34
  34. data/app/models/phcdevworks_press/list.rb +7 -7
  35. data/app/models/phcdevworks_press/list_item_versions.rb +0 -0
  36. data/app/models/phcdevworks_press/list_post_versions.rb +0 -0
  37. data/app/models/phcdevworks_press/review/post.rb +33 -33
  38. data/app/models/phcdevworks_press/review.rb +7 -7
  39. data/app/models/phcdevworks_press/review_post_versions.rb +0 -0
  40. data/app/views/layouts/phcdevworks_press/application.html.erb +131 -131
  41. data/app/views/layouts/phcdevworks_press/components/backend/footer/_footer.html.erb +0 -0
  42. data/app/views/layouts/phcdevworks_press/components/backend/navigation/_top_menu.html.erb +0 -0
  43. data/app/views/layouts/phcdevworks_press/components/backend/sidebars/_side_menu.html.erb +43 -43
  44. data/app/views/layouts/phcdevworks_press/frontend.html.erb +5 -5
  45. data/app/views/phcdevworks_press/article/posts/_form.html.erb +105 -105
  46. data/app/views/phcdevworks_press/article/posts/edit.html.erb +23 -23
  47. data/app/views/phcdevworks_press/article/posts/index.html.erb +83 -83
  48. data/app/views/phcdevworks_press/article/posts/new.html.erb +23 -23
  49. data/app/views/phcdevworks_press/blog/articles/index.html.erb +69 -69
  50. data/app/views/phcdevworks_press/blog/articles/show.html.erb +0 -0
  51. data/app/views/phcdevworks_press/list/items/_form.html.erb +37 -37
  52. data/app/views/phcdevworks_press/list/items/edit.html.erb +47 -47
  53. data/app/views/phcdevworks_press/list/items/index.html.erb +81 -81
  54. data/app/views/phcdevworks_press/list/items/new.html.erb +48 -48
  55. data/app/views/phcdevworks_press/list/items/show.html.erb +0 -0
  56. data/app/views/phcdevworks_press/list/posts/_form.html.erb +86 -86
  57. data/app/views/phcdevworks_press/list/posts/edit.html.erb +23 -23
  58. data/app/views/phcdevworks_press/list/posts/index.html.erb +84 -84
  59. data/app/views/phcdevworks_press/list/posts/new.html.erb +23 -23
  60. data/app/views/phcdevworks_press/list/posts/show.html.erb +76 -76
  61. data/app/views/phcdevworks_press/review/posts/_form.html.erb +90 -90
  62. data/app/views/phcdevworks_press/review/posts/edit.html.erb +23 -23
  63. data/app/views/phcdevworks_press/review/posts/index.html.erb +83 -83
  64. data/app/views/phcdevworks_press/review/posts/new.html.erb +23 -23
  65. data/app/views/phcdevworks_press/review/posts/show.html.erb +9 -9
  66. data/config/routes.rb +38 -39
  67. data/config/spring.rb +1 -1
  68. data/db/migrate/20170517064030_create_phcdevworks_press_article_post_versions.rb +0 -0
  69. data/db/migrate/20190805232522_create_phcdevworks_press_article_posts.rb +19 -19
  70. data/db/migrate/20191024232406_create_phcdevworks_press_article_categories_posts.rb +10 -10
  71. data/db/migrate/20200708231335_create_phcdevworks_press_list_post_versions.rb +18 -18
  72. data/db/migrate/20200708231351_create_phcdevworks_press_review_post_versions.rb +18 -18
  73. data/db/migrate/20200712064624_create_phcdevworks_press_list_posts.rb +19 -19
  74. data/db/migrate/20200712064740_create_phcdevworks_press_review_posts.rb +21 -21
  75. data/db/migrate/20200712064920_create_phcdevworks_press_list_items.rb +22 -22
  76. data/db/migrate/20200712065808_create_phcdevworks_press_list_item_versions.rb +18 -18
  77. data/db/migrate/20200716224648_create_phcdevworks_press_review_categories_posts.rb +10 -10
  78. data/db/migrate/20200716224738_create_phcdevworks_press_list_categories_posts.rb +10 -10
  79. data/db/migrate/20210213025633_add_affiliatelink_to_article_posts.rb +5 -5
  80. data/lib/phcdevworks_press/engine.rb +47 -48
  81. data/lib/phcdevworks_press/version.rb +3 -3
  82. data/lib/phcdevworks_press.rb +6 -6
  83. data/lib/tasks/phcdevworks_press_tasks.rake +4 -4
  84. metadata +33 -33
@@ -1,90 +1,90 @@
1
- <!-- Form - Review - Posts -->
2
- <%= form_with(model: review_post, local: true) do |form| %>
3
-
4
- <div class="row">
5
- <div class="col-md-3">
6
-
7
- <!-- Panel - Publishing -->
8
- <div class="panel panel-inverse">
9
- <div class="panel-heading">
10
- <h4 class="panel-title">Review Publish Panel</h4>
11
- </div>
12
- <div class="panel-body">
13
- <div class="form-group field_with_errors">
14
- <%= form.label :review_post_status, "Post Status" %>
15
- <%= form.select( :review_post_status, [["Draft","draft"],["Published","published"],["Review","review"]], {}, {class: "form-control"}) %>
16
- </div>
17
- <div class="actions">
18
- <%= form.submit class: "btn btn-primary" %>
19
- </div>
20
- </div>
21
- </div>
22
- <!-- Panel - Publishing -->
23
-
24
- <!-- Panel - Image Uploading -->
25
- <div class="panel panel-inverse">
26
- <div class="panel-heading">
27
- <h4 class="panel-title">Review Images</h4>
28
- </div>
29
- <div class="panel-body">
30
- <div class="form-group field_with_errors">
31
- <%= form.label :review_post_image, "Featured Image" %>
32
- <%= form.file_field :review_post_image, class: "form-control" %>
33
- </div>
34
- <% if form.object.review_post_image.attached? %>
35
- <%= image_tag main_app.url_for(form.object.review_post_image), class: "img-responsive img-thumbnail" %>
36
- <% end %>
37
- </div>
38
- </div>
39
- <!-- Panel - Image Uploading -->
40
-
41
- <!-- Panel - Article - Categories -->
42
- <div class="panel panel-inverse">
43
- <div class="panel-heading">
44
- <h4 class="panel-title">Review Options</h4>
45
- </div>
46
- <div class="panel-body">
47
- <%= form.collection_check_boxes :category_ids, PhcdevworksCoreModules::Post::Category.all, :id, :post_category_name do |post_category| %>
48
- <%= post_category.check_box %>
49
- <%= post_category.label %><br>
50
- <% end %>
51
- <div class="form-group">
52
- <label>Attach SEO Data</label>
53
- <%= collection_select(:review_post, :optimization_id, PhcdevworksCoreModules::Marketing::Optimization.order("marketing_optimization_page_title"), :id, :marketing_optimization_page_title, {include_blank: true}, {class: "form-control"}) %>
54
- </div>
55
- <div class="form-group">
56
- <%= form.label :review_post_rating, "Review Rating" %>
57
- <%= form.select( :review_post_rating, [["01","01"],["02","02"],["03","03"],["04","04"],["05","05"]], {}, {class: "form-control"}) %>
58
- </div>
59
- </div>
60
- </div>
61
- <!-- Panel - Article - Categories -->
62
-
63
- </div>
64
- <div class="col-md-9 ">
65
-
66
- <!-- PHCNotifi Render Validation -->
67
- <%= render "phcdevworks_notifications/bootstrap/validations", :object => @review_post %>
68
- <!-- PHCNotifi Render Validation -->
69
-
70
- <div class="panel panel-inverse">
71
- <div class="panel-heading">
72
- <h4 class="panel-title"><%= yield(:phc_title_tagline) %></h4>
73
- </div>
74
- <div class="panel-body">
75
- <div class="form-group field_with_errors">
76
- <%= form.label :review_post_title, "Article Title" %>
77
- <%= form.text_field :review_post_title, class: "form-control" %>
78
- </div>
79
- <div class="form-group ">
80
- <%= form.text_area :review_post_text, class: "form-control editor" %>
81
- <div id="word-count" class="mt-3"></div>
82
- </div>
83
- </div>
84
- </div>
85
-
86
- </div>
87
- </div>
88
-
89
- <% end %>
90
- <!-- Form - Review - Posts -->
1
+ <!-- Form - Review - Posts -->
2
+ <%= form_with(model: review_post, local: true) do |form| %>
3
+
4
+ <div class="row">
5
+ <div class="col-md-3">
6
+
7
+ <!-- Panel - Publishing -->
8
+ <div class="panel panel-inverse">
9
+ <div class="panel-heading">
10
+ <h4 class="panel-title">Review Publish Panel</h4>
11
+ </div>
12
+ <div class="panel-body">
13
+ <div class="form-group field_with_errors">
14
+ <%= form.label :review_post_status, "Post Status" %>
15
+ <%= form.select( :review_post_status, [["Draft","draft"],["Published","published"],["Review","review"]], {}, {class: "form-control"}) %>
16
+ </div>
17
+ <div class="actions">
18
+ <%= form.submit class: "btn btn-primary" %>
19
+ </div>
20
+ </div>
21
+ </div>
22
+ <!-- Panel - Publishing -->
23
+
24
+ <!-- Panel - Image Uploading -->
25
+ <div class="panel panel-inverse">
26
+ <div class="panel-heading">
27
+ <h4 class="panel-title">Review Images</h4>
28
+ </div>
29
+ <div class="panel-body">
30
+ <div class="form-group field_with_errors">
31
+ <%= form.label :review_post_image, "Featured Image" %>
32
+ <%= form.file_field :review_post_image, class: "form-control" %>
33
+ </div>
34
+ <% if form.object.review_post_image.attached? %>
35
+ <%= image_tag main_app.url_for(form.object.review_post_image), class: "img-responsive img-thumbnail" %>
36
+ <% end %>
37
+ </div>
38
+ </div>
39
+ <!-- Panel - Image Uploading -->
40
+
41
+ <!-- Panel - Article - Categories -->
42
+ <div class="panel panel-inverse">
43
+ <div class="panel-heading">
44
+ <h4 class="panel-title">Review Options</h4>
45
+ </div>
46
+ <div class="panel-body">
47
+ <%= form.collection_check_boxes :category_ids, PhcdevworksCoreModules::Post::Category.all, :id, :post_category_name do |post_category| %>
48
+ <%= post_category.check_box %>
49
+ <%= post_category.label %><br>
50
+ <% end %>
51
+ <div class="form-group">
52
+ <label>Attach SEO Data</label>
53
+ <%= collection_select(:review_post, :optimization_id, PhcdevworksCoreModules::Marketing::Optimization.order("marketing_optimization_page_title"), :id, :marketing_optimization_page_title, {include_blank: true}, {class: "form-control"}) %>
54
+ </div>
55
+ <div class="form-group">
56
+ <%= form.label :review_post_rating, "Review Rating" %>
57
+ <%= form.select( :review_post_rating, [["01","01"],["02","02"],["03","03"],["04","04"],["05","05"]], {}, {class: "form-control"}) %>
58
+ </div>
59
+ </div>
60
+ </div>
61
+ <!-- Panel - Article - Categories -->
62
+
63
+ </div>
64
+ <div class="col-md-9 ">
65
+
66
+ <!-- PHCNotifi Render Validation -->
67
+ <%= render "phcdevworks_notifications/bootstrap/validations", :object => @review_post %>
68
+ <!-- PHCNotifi Render Validation -->
69
+
70
+ <div class="panel panel-inverse">
71
+ <div class="panel-heading">
72
+ <h4 class="panel-title"><%= yield(:phc_title_tagline) %></h4>
73
+ </div>
74
+ <div class="panel-body">
75
+ <div class="form-group field_with_errors">
76
+ <%= form.label :review_post_title, "Article Title" %>
77
+ <%= form.text_field :review_post_title, class: "form-control" %>
78
+ </div>
79
+ <div class="form-group ">
80
+ <%= form.text_area :review_post_text, class: "form-control editor" %>
81
+ <div id="word-count" class="mt-3"></div>
82
+ </div>
83
+ </div>
84
+ </div>
85
+
86
+ </div>
87
+ </div>
88
+
89
+ <% end %>
90
+ <!-- Form - Review - Posts -->
@@ -1,23 +1,23 @@
1
- <!-- PHCTitleSEO Title Variables -->
2
- <% phc_title "Article Manager" %>
3
- <% phc_title_tagline "Update Review" %>
4
- <% phc_breadcrumb_one yield(:phc_title) %>
5
- <% phc_breadcrumb_two link_to "Review Index", phcdevworks_press.review_posts_path %>
6
- <% phc_breadcrumb_three yield(:phc_title_tagline) %>
7
- <!-- PHCTitleSEO Title Variables -->
8
-
9
- <!-- Page Bradcrumbs -->
10
- <ol class="breadcrumb pull-right">
11
- <li class="breadcrumb-item"><%= yield(:phc_breadcrumb_one) %></li>
12
- <li class="breadcrumb-item"><%= yield(:phc_breadcrumb_two) %></li>
13
- <li class="breadcrumb-item active"><%= yield(:phc_breadcrumb_three) %></li>
14
- </ol>
15
- <!-- Page Bradcrumbs -->
16
-
17
- <!-- Page Header -->
18
- <h2 class="page-header"><%= yield(:phc_title) %></h2>
19
- <!-- Page Header -->
20
-
21
- <!-- Edit Form -->
22
- <%= render 'form', review_post: @review_post %>
23
- <!-- Edit Form -->
1
+ <!-- PHCTitleSEO Title Variables -->
2
+ <% phc_title "Article Manager" %>
3
+ <% phc_title_tagline "Update Review" %>
4
+ <% phc_breadcrumb_one yield(:phc_title) %>
5
+ <% phc_breadcrumb_two link_to "Review Index", phcdevworks_press.review_posts_path %>
6
+ <% phc_breadcrumb_three yield(:phc_title_tagline) %>
7
+ <!-- PHCTitleSEO Title Variables -->
8
+
9
+ <!-- Page Bradcrumbs -->
10
+ <ol class="breadcrumb pull-right">
11
+ <li class="breadcrumb-item"><%= yield(:phc_breadcrumb_one) %></li>
12
+ <li class="breadcrumb-item"><%= yield(:phc_breadcrumb_two) %></li>
13
+ <li class="breadcrumb-item active"><%= yield(:phc_breadcrumb_three) %></li>
14
+ </ol>
15
+ <!-- Page Bradcrumbs -->
16
+
17
+ <!-- Page Header -->
18
+ <h2 class="page-header"><%= yield(:phc_title) %></h2>
19
+ <!-- Page Header -->
20
+
21
+ <!-- Edit Form -->
22
+ <%= render 'form', review_post: @review_post %>
23
+ <!-- Edit Form -->
@@ -1,83 +1,83 @@
1
- <!-- PHCTitleSEO Title Variables -->
2
- <% phc_title "Reviews Manager" %>
3
- <% phc_title_tagline "Reviews Index" %>
4
- <% phc_breadcrumb_one yield(:phc_title) %>
5
- <% phc_breadcrumb_two yield(:phc_title_tagline) %>
6
- <!-- PHCTitleSEO Title Variables -->
7
-
8
- <!-- Page Bradcrumbs -->
9
- <ol class="breadcrumb pull-right">
10
- <li class="breadcrumb-item"><%= yield(:phc_breadcrumb_one) %></li>
11
- <li class="breadcrumb-item active"><%= yield(:phc_breadcrumb_two) %></li>
12
- </ol>
13
- <!-- Page Bradcrumbs -->
14
-
15
- <!-- Page Header -->
16
- <h2 class="page-header"><%= yield(:phc_title) %></h2>
17
- <!-- Page Header -->
18
-
19
- <!-- Page Content -->
20
- <div class="row">
21
- <div class="col-lg-12">
22
-
23
- <!-- Panel -->
24
- <div class="panel panel-inverse">
25
-
26
- <!-- Panel - Heading -->
27
- <div class="panel-heading">
28
- <h4 class="panel-title"><%= yield(:phc_title) %></h4>
29
- </div>
30
- <!-- Panel - Heading -->
31
-
32
- <!-- Panel - Body -->
33
- <div class="panel-body">
34
-
35
- <!-- Index - Table -->
36
- <div class="table-responsive">
37
- <table class="table table-striped table-bordered">
38
-
39
- <thead>
40
- <tr>
41
- <th>Review Headline</th>
42
- <th>Text Preview</th>
43
- <th>Review Status</th>
44
- <th></th>
45
- </tr>
46
- </thead>
47
-
48
- <tbody>
49
- <% @review_posts.each do |review_post| %>
50
- <tr>
51
- <td><%= review_post.review_post_title %></td>
52
- <td><%= truncate(review_post.review_post_text, :length => 80, :escape => false) %></td>
53
- <td><%= review_post.review_post_status.capitalize %></td>
54
- <td>
55
- <div class="btn-group d-flex" role="group">
56
- <%= link_to "Update Review", edit_review_post_path(review_post), class: "btn btn-primary btn-xs" %>
57
- <%= link_to "Remove Review", review_post, class: "btn btn-danger btn-xs", method: :delete, data: { confirm: "Are you sure?" } %>
58
- </div>
59
- </td>
60
- </tr>
61
- <% end %>
62
- </tbody>
63
-
64
- </table>
65
- </div>
66
- <!-- Index - Table -->
67
-
68
- <!-- New Button -->
69
- <%= link_to phcdevworks_press.new_review_post_path, class: "btn btn-primary" do %>
70
- <i class="fad fa-plus-circle"></i>
71
- <%= "Add a New Review" %>
72
- <% end %>
73
- <!-- New Button -->
74
-
75
- </div>
76
- <!-- Panel - Body -->
77
-
78
- </div>
79
- <!-- Panel -->
80
-
81
- </div>
82
- </div>
83
- <!-- Page Content -->
1
+ <!-- PHCTitleSEO Title Variables -->
2
+ <% phc_title "Reviews Manager" %>
3
+ <% phc_title_tagline "Reviews Index" %>
4
+ <% phc_breadcrumb_one yield(:phc_title) %>
5
+ <% phc_breadcrumb_two yield(:phc_title_tagline) %>
6
+ <!-- PHCTitleSEO Title Variables -->
7
+
8
+ <!-- Page Bradcrumbs -->
9
+ <ol class="breadcrumb pull-right">
10
+ <li class="breadcrumb-item"><%= yield(:phc_breadcrumb_one) %></li>
11
+ <li class="breadcrumb-item active"><%= yield(:phc_breadcrumb_two) %></li>
12
+ </ol>
13
+ <!-- Page Bradcrumbs -->
14
+
15
+ <!-- Page Header -->
16
+ <h2 class="page-header"><%= yield(:phc_title) %></h2>
17
+ <!-- Page Header -->
18
+
19
+ <!-- Page Content -->
20
+ <div class="row">
21
+ <div class="col-lg-12">
22
+
23
+ <!-- Panel -->
24
+ <div class="panel panel-inverse">
25
+
26
+ <!-- Panel - Heading -->
27
+ <div class="panel-heading">
28
+ <h4 class="panel-title"><%= yield(:phc_title) %></h4>
29
+ </div>
30
+ <!-- Panel - Heading -->
31
+
32
+ <!-- Panel - Body -->
33
+ <div class="panel-body">
34
+
35
+ <!-- Index - Table -->
36
+ <div class="table-responsive">
37
+ <table class="table table-striped table-bordered">
38
+
39
+ <thead>
40
+ <tr>
41
+ <th>Review Headline</th>
42
+ <th>Text Preview</th>
43
+ <th>Review Status</th>
44
+ <th></th>
45
+ </tr>
46
+ </thead>
47
+
48
+ <tbody>
49
+ <% @review_posts.each do |review_post| %>
50
+ <tr>
51
+ <td><%= review_post.review_post_title %></td>
52
+ <td><%= truncate(review_post.review_post_text, :length => 80, :escape => false) %></td>
53
+ <td><%= review_post.review_post_status.capitalize %></td>
54
+ <td>
55
+ <div class="btn-group d-flex" role="group">
56
+ <%= link_to "Update Review", edit_review_post_path(review_post), class: "btn btn-primary btn-xs" %>
57
+ <%= link_to "Remove Review", review_post, class: "btn btn-danger btn-xs", method: :delete, data: { confirm: "Are you sure?" } %>
58
+ </div>
59
+ </td>
60
+ </tr>
61
+ <% end %>
62
+ </tbody>
63
+
64
+ </table>
65
+ </div>
66
+ <!-- Index - Table -->
67
+
68
+ <!-- New Button -->
69
+ <%= link_to phcdevworks_press.new_review_post_path, class: "btn btn-primary" do %>
70
+ <i class="fad fa-plus-circle"></i>
71
+ <%= "Add a New Review" %>
72
+ <% end %>
73
+ <!-- New Button -->
74
+
75
+ </div>
76
+ <!-- Panel - Body -->
77
+
78
+ </div>
79
+ <!-- Panel -->
80
+
81
+ </div>
82
+ </div>
83
+ <!-- Page Content -->
@@ -1,23 +1,23 @@
1
- <!-- PHCTitleSEO Title Variables -->
2
- <% phc_title "Reviews Manager" %>
3
- <% phc_title_tagline "Create a New Review" %>
4
- <% phc_breadcrumb_one yield(:phc_title) %>
5
- <% phc_breadcrumb_two link_to "Reviews Index", phcdevworks_press.review_posts_path %>
6
- <% phc_breadcrumb_three yield(:phc_title_tagline) %>
7
- <!-- PHCTitleSEO Title Variables -->
8
-
9
- <!-- Page Bradcrumbs -->
10
- <ol class="breadcrumb pull-right">
11
- <li class="breadcrumb-item"><%= yield(:phc_breadcrumb_one) %></li>
12
- <li class="breadcrumb-item"><%= yield(:phc_breadcrumb_two) %></li>
13
- <li class="breadcrumb-item active"><%= yield(:phc_breadcrumb_three) %></li>
14
- </ol>
15
- <!-- Page Bradcrumbs -->
16
-
17
- <!-- Page Header -->
18
- <h1 class="page-header"><%= yield(:phc_title) %></h1>
19
- <!-- Page Header -->
20
-
21
- <!-- New Form -->
22
- <%= render 'form', review_post: @review_post %>
23
- <!-- New Form -->
1
+ <!-- PHCTitleSEO Title Variables -->
2
+ <% phc_title "Reviews Manager" %>
3
+ <% phc_title_tagline "Create a New Review" %>
4
+ <% phc_breadcrumb_one yield(:phc_title) %>
5
+ <% phc_breadcrumb_two link_to "Reviews Index", phcdevworks_press.review_posts_path %>
6
+ <% phc_breadcrumb_three yield(:phc_title_tagline) %>
7
+ <!-- PHCTitleSEO Title Variables -->
8
+
9
+ <!-- Page Bradcrumbs -->
10
+ <ol class="breadcrumb pull-right">
11
+ <li class="breadcrumb-item"><%= yield(:phc_breadcrumb_one) %></li>
12
+ <li class="breadcrumb-item"><%= yield(:phc_breadcrumb_two) %></li>
13
+ <li class="breadcrumb-item active"><%= yield(:phc_breadcrumb_three) %></li>
14
+ </ol>
15
+ <!-- Page Bradcrumbs -->
16
+
17
+ <!-- Page Header -->
18
+ <h1 class="page-header"><%= yield(:phc_title) %></h1>
19
+ <!-- Page Header -->
20
+
21
+ <!-- New Form -->
22
+ <%= render 'form', review_post: @review_post %>
23
+ <!-- New Form -->
@@ -1,9 +1,9 @@
1
- <p id="notice"><%= notice %></p>
2
-
3
- <p>
4
- <strong>Post title:</strong>
5
- <%= @review_post.post_title %>
6
- </p>
7
-
8
- <%= link_to 'Edit', edit_review_post_path(@review_post) %> |
9
- <%= link_to 'Back', review_posts_path %>
1
+ <p id="notice"><%= notice %></p>
2
+
3
+ <p>
4
+ <strong>Post title:</strong>
5
+ <%= @review_post.post_title %>
6
+ </p>
7
+
8
+ <%= link_to 'Edit', edit_review_post_path(@review_post) %> |
9
+ <%= link_to 'Back', review_posts_path %>
data/config/routes.rb CHANGED
@@ -1,39 +1,38 @@
1
- PhcdevworksPress::Engine.routes.draw do
2
-
3
- # Review Routes
4
- namespace :review, class_name: 'Review::Post' do
5
- resources :posts
6
- end
7
-
8
- # List Routes
9
- namespace :list do
10
- resources :posts, class_name: 'List::Post' do
11
- resources :items, class_name: 'List::Item'
12
- end
13
- end
14
-
15
- # Article Routes
16
- namespace :article do
17
- resources :posts, class_name: 'Articles::Post'
18
- end
19
-
20
- # Frontend Routes
21
- namespace :blog do
22
- resources :articles, only: [:index, :show]
23
- resources :lists, only: [:index, :show]
24
- resources :reviews, only: [:index, :show]
25
- end
26
-
27
- # API Routes
28
- namespace :api, :path => "", :constraints => {:subdomain => "api"} do
29
- namespace :v1 do
30
- resources :posts, defaults: {format: 'json'}
31
- end
32
- end
33
-
34
- # Mount Routes
35
- mount PhcdevworksAccounts::Engine, :at => '/'
36
- mount PhcdevworksAccountsStripe::Engine, :at => '/'
37
- mount PhcdevworksCoreModules::Engine, :at => '/'
38
-
39
- end
1
+ PhcdevworksPress::Engine.routes.draw do
2
+
3
+ # Review Routes
4
+ namespace :review, class_name: 'Review::Post' do
5
+ resources :posts
6
+ end
7
+
8
+ # List Routes
9
+ namespace :list do
10
+ resources :posts, class_name: 'List::Post' do
11
+ resources :items, class_name: 'List::Item'
12
+ end
13
+ end
14
+
15
+ # Article Routes
16
+ namespace :article do
17
+ resources :posts, class_name: 'Articles::Post'
18
+ end
19
+
20
+ # Frontend Routes
21
+ namespace :blog do
22
+ resources :articles, only: [:index, :show]
23
+ resources :lists, only: [:index, :show]
24
+ resources :reviews, only: [:index, :show]
25
+ end
26
+
27
+ # API Routes
28
+ namespace :api, :path => "", :constraints => {:subdomain => "api"} do
29
+ namespace :v1 do
30
+ resources :posts, defaults: {format: 'json'}
31
+ end
32
+ end
33
+
34
+ # Mount Routes
35
+ mount PhcdevworksAccounts::Engine, :at => '/'
36
+ mount PhcdevworksCoreModules::Engine, :at => '/'
37
+
38
+ end
data/config/spring.rb CHANGED
@@ -1,2 +1,2 @@
1
- Spring.application_root = './spec/test_app'
1
+ Spring.application_root = './spec/test_app'
2
2
 
@@ -1,19 +1,19 @@
1
- class CreatePhcdevworksPressArticlePosts < ActiveRecord::Migration[6.0]
2
- def change
3
- create_table :phcdevworks_press_article_posts do |t|
4
-
5
- t.string :article_post_title
6
- t.text :article_post_text
7
- t.string :article_post_status
8
-
9
- t.string :optimization_id
10
-
11
- t.string :slug
12
- t.string :user_id
13
- t.string :org_id
14
-
15
- t.timestamps
16
-
17
- end
18
- end
19
- end
1
+ class CreatePhcdevworksPressArticlePosts < ActiveRecord::Migration[6.0]
2
+ def change
3
+ create_table :phcdevworks_press_article_posts do |t|
4
+
5
+ t.string :article_post_title
6
+ t.text :article_post_text
7
+ t.string :article_post_status
8
+
9
+ t.string :optimization_id
10
+
11
+ t.string :slug
12
+ t.string :user_id
13
+ t.string :org_id
14
+
15
+ t.timestamps
16
+
17
+ end
18
+ end
19
+ end
@@ -1,10 +1,10 @@
1
- class CreatePhcdevworksPressArticleCategoriesPosts < ActiveRecord::Migration[6.0]
2
- def change
3
- create_table :phcdevworks_press_article_categories_posts do |t|
4
-
5
- t.integer :category_id
6
- t.integer :post_id
7
-
8
- end
9
- end
10
- end
1
+ class CreatePhcdevworksPressArticleCategoriesPosts < ActiveRecord::Migration[6.0]
2
+ def change
3
+ create_table :phcdevworks_press_article_categories_posts do |t|
4
+
5
+ t.integer :category_id
6
+ t.integer :post_id
7
+
8
+ end
9
+ end
10
+ end
@@ -1,18 +1,18 @@
1
- class CreatePhcdevworksPressListPostVersions < ActiveRecord::Migration[6.0]
2
- TEXT_BYTES = 1_073_741_823
3
- def change
4
- create_table :phcdevworks_press_list_post_versions do |t|
5
-
6
- t.string :item_type, {:null=>false}
7
- t.integer :item_id, null: false
8
- t.string :event, null: false
9
- t.string :whodunnit
10
- t.text :object, limit: TEXT_BYTES
11
- t.datetime :created_at
12
-
13
- end
14
-
15
- add_index :phcdevworks_press_list_post_versions, %i(item_type item_id), :name => 'list_post_versions'
16
-
17
- end
18
- end
1
+ class CreatePhcdevworksPressListPostVersions < ActiveRecord::Migration[6.0]
2
+ TEXT_BYTES = 1_073_741_823
3
+ def change
4
+ create_table :phcdevworks_press_list_post_versions do |t|
5
+
6
+ t.string :item_type, {:null=>false}
7
+ t.integer :item_id, null: false
8
+ t.string :event, null: false
9
+ t.string :whodunnit
10
+ t.text :object, limit: TEXT_BYTES
11
+ t.datetime :created_at
12
+
13
+ end
14
+
15
+ add_index :phcdevworks_press_list_post_versions, %i(item_type item_id), :name => 'list_post_versions'
16
+
17
+ end
18
+ end