phcdevworks_core_modules 0.4.0 → 5.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/app/assets/javascripts/phcdevworks_core_modules/marketing/optimizations.coffee +3 -0
- data/app/assets/javascripts/phcdevworks_core_modules/post/categories.coffee +3 -0
- data/app/assets/stylesheets/phcdevworks_core_modules/marketing/optimizations.scss +3 -0
- data/app/assets/stylesheets/phcdevworks_core_modules/post/categories.scss +3 -0
- data/app/assets/stylesheets/scaffolds.scss +65 -0
- data/app/controllers/phcdevworks_core_modules/marketing/optimizations_controller.rb +81 -0
- data/app/controllers/phcdevworks_core_modules/post/categories_controller.rb +81 -0
- data/app/helpers/phcdevworks_core_modules/marketing/optimizations_helper.rb +4 -0
- data/app/helpers/phcdevworks_core_modules/{modules → post}/categories_helper.rb +1 -1
- data/app/models/phcdevworks_core_modules/marketing.rb +7 -0
- data/app/models/phcdevworks_core_modules/marketing/optimization.rb +54 -0
- data/app/models/phcdevworks_core_modules/marketing_optimization_versions.rb +5 -0
- data/app/models/phcdevworks_core_modules/post.rb +7 -0
- data/app/models/phcdevworks_core_modules/post/category.rb +39 -0
- data/app/models/phcdevworks_core_modules/post_category_versions.rb +5 -0
- data/app/views/layouts/phcdevworks_core_modules/components/backend/navigation/_top_menu.html.erb +1 -1
- data/app/views/layouts/phcdevworks_core_modules/components/backend/sidebars/_side_menu.html.erb +75 -80
- data/app/views/phcdevworks_core_modules/marketing/optimizations/_form.html.erb +89 -0
- data/app/views/phcdevworks_core_modules/marketing/optimizations/edit.html.erb +47 -0
- data/app/views/phcdevworks_core_modules/marketing/optimizations/index.html.erb +88 -0
- data/app/views/phcdevworks_core_modules/marketing/optimizations/new.html.erb +47 -0
- data/app/views/phcdevworks_core_modules/marketing/optimizations/show.html.erb +54 -0
- data/app/views/phcdevworks_core_modules/post/categories/_form.html.erb +27 -0
- data/app/views/phcdevworks_core_modules/{modules → post}/categories/edit.html.erb +2 -2
- data/app/views/phcdevworks_core_modules/{modules → post}/categories/index.html.erb +7 -7
- data/app/views/phcdevworks_core_modules/{modules → post}/categories/new.html.erb +2 -2
- data/app/views/phcdevworks_core_modules/post/categories/show.html.erb +9 -0
- data/config/routes.rb +11 -6
- data/db/migrate/20170517064427_create_phcdevworks_core_modules_post_category_versions.rb +17 -0
- data/db/migrate/20200705223718_create_phcdevworks_core_modules_marketing_optimizations.rb +26 -0
- data/db/migrate/20200705225433_create_phcdevworks_core_modules_marketing_optimization_versions.rb +17 -0
- data/db/migrate/20200706094820_create_phcdevworks_core_modules_post_categories.rb +17 -0
- data/lib/phcdevworks_core_modules/version.rb +1 -1
- metadata +34 -16
- data/app/controllers/phcdevworks_core_modules/modules/categories_controller.rb +0 -81
- data/app/models/phcdevworks_core_modules/core_category_versions.rb +0 -5
- data/app/models/phcdevworks_core_modules/modules/category.rb +0 -30
- data/app/views/phcdevworks_core_modules/modules/categories/_form.html.erb +0 -22
- data/app/views/phcdevworks_core_modules/modules/categories/show.html.erb +0 -9
- data/db/migrate/20170517064427_create_phcdevworks_core_category_versions.rb +0 -17
- data/db/migrate/20200629113153_create_phcdevworks_core_modules_modules_categories.rb +0 -15
@@ -0,0 +1,89 @@
|
|
1
|
+
<!-- Form - Optimization - Post -->
|
2
|
+
<%= form_with(model: marketing_optimization, local: true) do |form| %>
|
3
|
+
|
4
|
+
<!-- PHCNotifi Render Validation -->
|
5
|
+
<%= render "phcdevworks_notifications/bootstrap/validations", :object => @marketing_optimization %>
|
6
|
+
<!-- PHCNotifi Render Validation -->
|
7
|
+
|
8
|
+
<!-- Form Input Fields -->
|
9
|
+
<div class="form-group">
|
10
|
+
<%= form.label :marketing_optimization_page_title, "Page Title" %>
|
11
|
+
<%= form.text_field :marketing_optimization_page_title, class: "form-control" %>
|
12
|
+
</div>
|
13
|
+
|
14
|
+
<div class="form-group">
|
15
|
+
<%= form.label :marketing_optimization_page_description, "Page Description" %>
|
16
|
+
<%= form.text_area :marketing_optimization_page_description, class: "form-control" %>
|
17
|
+
</div>
|
18
|
+
|
19
|
+
<div class="form-group">
|
20
|
+
<%= form.label :marketing_optimization_og_title, "Open Graph Title" %>
|
21
|
+
<%= form.text_field :marketing_optimization_og_title, class: "form-control" %>
|
22
|
+
</div>
|
23
|
+
|
24
|
+
<div class="form-group">
|
25
|
+
<%= form.label :marketing_optimization_og_description, "Open Graph Description" %>
|
26
|
+
<%= form.text_field :marketing_optimization_og_description, class: "form-control" %>
|
27
|
+
</div>
|
28
|
+
|
29
|
+
<div class="form-group">
|
30
|
+
<%= form.label :marketing_optimization_og_type, "Open Graph Type" %>
|
31
|
+
<%= form.text_field :marketing_optimization_og_type, class: "form-control" %>
|
32
|
+
</div>
|
33
|
+
|
34
|
+
<div class="form-group">
|
35
|
+
<%= form.label :marketing_optimization_og_url, "Open Graph URL" %>
|
36
|
+
<%= form.text_field :marketing_optimization_og_url, class: "form-control" %>
|
37
|
+
</div>
|
38
|
+
|
39
|
+
<div class="form-group field_with_errors">
|
40
|
+
<%= form.label :marketing_optimization_og_image, "Featured Image" %>
|
41
|
+
<%= form.file_field :marketing_optimization_og_image, class: "form-control" %>
|
42
|
+
<% if form.object.marketing_optimization_og_image.attached? %>
|
43
|
+
<%= image_tag main_app.url_for(form.object.marketing_optimization_og_image), class: "img-responsive img-thumbnail" %>
|
44
|
+
<%= form.label :remove_marketing_optimization_og_image %>
|
45
|
+
<%= form.check_box :remove_marketing_optimization_og_image %>
|
46
|
+
<% end %>
|
47
|
+
</div>
|
48
|
+
|
49
|
+
<div class="form-group">
|
50
|
+
<%= form.label :marketing_optimization_twitter_title, "Twitter Card Title" %>
|
51
|
+
<%= form.text_field :marketing_optimization_twitter_title, class: "form-control" %>
|
52
|
+
</div>
|
53
|
+
|
54
|
+
<div class="form-group">
|
55
|
+
<%= form.label :marketing_optimization_twitter_description, "Twitter Card Description" %>
|
56
|
+
<%= form.text_area :marketing_optimization_twitter_description, class: "form-control" %>
|
57
|
+
</div>
|
58
|
+
|
59
|
+
<div class="form-group">
|
60
|
+
<%= form.label :marketing_optimization_twitter_type, "Twitter Card Type" %>
|
61
|
+
<%= form.text_field :marketing_optimization_twitter_type, class: "form-control" %>
|
62
|
+
</div>
|
63
|
+
|
64
|
+
<div class="form-group">
|
65
|
+
<%= form.label :marketing_optimization_twitter_url, "Twitter Card URL" %>
|
66
|
+
<%= form.text_field :marketing_optimization_twitter_url, class: "form-control" %>
|
67
|
+
</div>
|
68
|
+
|
69
|
+
<div class="form-group field_with_errors">
|
70
|
+
<%= form.label :marketing_optimization_twitter_image, "Featured Image" %>
|
71
|
+
<%= form.file_field :marketing_optimization_twitter_image, class: "form-control" %>
|
72
|
+
<% if form.object.marketing_optimization_twitter_image.attached? %>
|
73
|
+
<%= image_tag main_app.url_for(form.object.marketing_optimization_twitter_image), class: "img-responsive img-thumbnail" %>
|
74
|
+
<%= form.label :remove_marketing_optimization_twitter_image %>
|
75
|
+
<%= form.check_box :remove_marketing_optimization_twitter_image %>
|
76
|
+
<% end %>
|
77
|
+
</div>
|
78
|
+
|
79
|
+
|
80
|
+
<!-- Form Input Fields -->
|
81
|
+
|
82
|
+
<!-- Form Submition Button -->
|
83
|
+
<div class="actions">
|
84
|
+
<%= form.submit class: "btn btn-primary" %>
|
85
|
+
</div>
|
86
|
+
<!-- For Submition Button -->
|
87
|
+
|
88
|
+
<% end %>
|
89
|
+
<!-- Form - Optimization - Post -->
|
@@ -0,0 +1,47 @@
|
|
1
|
+
<!-- PHCTitleSEO Title Variables -->
|
2
|
+
<% phc_title "Marketing Manager" %>
|
3
|
+
<% phc_title_tagline "Update SEO Data" %>
|
4
|
+
<% phc_breadcrumb_one yield(:phc_title_tagline) %>
|
5
|
+
<% phc_breadcrumb_two link_to "SEO Data Index", phcdevworks_core_modules.marketing_optimizations_path %>
|
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
|
+
<!-- Edit Form -->
|
36
|
+
<%= render 'form', marketing_optimization: @marketing_optimization %>
|
37
|
+
<!-- Edit Form -->
|
38
|
+
|
39
|
+
</div>
|
40
|
+
<!-- Panel - Body -->
|
41
|
+
|
42
|
+
</div>
|
43
|
+
<!-- Panel -->
|
44
|
+
|
45
|
+
</div>
|
46
|
+
</div>
|
47
|
+
<!-- Page Content -->
|
@@ -0,0 +1,88 @@
|
|
1
|
+
<!-- PHCTitleSEO Title Variables -->
|
2
|
+
<% phc_title "Marketing Manager" %>
|
3
|
+
<% phc_title_tagline "SEO Data Index" %>
|
4
|
+
<% phc_breadcrumb_one yield(:phc_title_tagline) %>
|
5
|
+
<% phc_breadcrumb_two link_to "SEO Data Index", phcdevworks_core_modules.marketing_optimizations_path %>
|
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>SEO Title</th>
|
42
|
+
<th>SEO OG Title</th>
|
43
|
+
<th>SEO OG Type</th>
|
44
|
+
<th>SEO Twitter Title</th>
|
45
|
+
<th>SEO Twitter Type</th>
|
46
|
+
<th></th>
|
47
|
+
</tr>
|
48
|
+
</thead>
|
49
|
+
|
50
|
+
<tbody>
|
51
|
+
<% @marketing_optimizations.each do |marketing_optimization| %>
|
52
|
+
<tr>
|
53
|
+
<td><%= marketing_optimization.marketing_optimization_page_title %></td>
|
54
|
+
<td><%= marketing_optimization.marketing_optimization_og_title %></td>
|
55
|
+
<td><%= marketing_optimization.marketing_optimization_og_type %></td>
|
56
|
+
<td><%= marketing_optimization.marketing_optimization_twitter_title %></td>
|
57
|
+
<td><%= marketing_optimization.marketing_optimization_twitter_type %></td>
|
58
|
+
<td>
|
59
|
+
<div class="btn-group d-flex" role="group">
|
60
|
+
<%= link_to "SEO Details", marketing_optimization, class: "btn btn-purple btn-xs" %>
|
61
|
+
<%= link_to "Update Information", edit_marketing_optimization_path(marketing_optimization), class: "btn btn-primary btn-xs" %>
|
62
|
+
<%= link_to "Remove", marketing_optimization, method: :delete, data: { confirm: "Are you sure? This action cannot be reversed." }, class: "btn btn-danger btn-xs" %>
|
63
|
+
</div>
|
64
|
+
</td>
|
65
|
+
</tr>
|
66
|
+
<% end %>
|
67
|
+
</tbody>
|
68
|
+
|
69
|
+
</table>
|
70
|
+
</div>
|
71
|
+
<!-- Index - Table -->
|
72
|
+
|
73
|
+
<!-- New Button -->
|
74
|
+
<%= link_to phcdevworks_core_modules.new_marketing_optimization_path, class: "btn btn-primary btn-sm" do %>
|
75
|
+
<i class="fad fa-plus-circle"></i>
|
76
|
+
Add a SEO Data for a Post
|
77
|
+
<% end %>
|
78
|
+
<!-- New Button -->
|
79
|
+
|
80
|
+
</div>
|
81
|
+
<!-- Panel - Body -->
|
82
|
+
|
83
|
+
</div>
|
84
|
+
<!-- Panel -->
|
85
|
+
|
86
|
+
</div>
|
87
|
+
</div>
|
88
|
+
<!-- Page Content -->
|
@@ -0,0 +1,47 @@
|
|
1
|
+
<!-- PHCTitleSEO Title Variables -->
|
2
|
+
<% phc_title "Marketing Manager" %>
|
3
|
+
<% phc_title_tagline "Add New SEO Data" %>
|
4
|
+
<% phc_breadcrumb_one yield(:phc_title_tagline) %>
|
5
|
+
<% phc_breadcrumb_two link_to "SEO Data Index", phcdevworks_core_modules.marketing_optimizations_path %>
|
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
|
+
<!-- New Form -->
|
36
|
+
<%= render 'form', marketing_optimization: @marketing_optimization %>
|
37
|
+
<!-- Edit Form -->
|
38
|
+
|
39
|
+
</div>
|
40
|
+
<!-- Panel - Body -->
|
41
|
+
|
42
|
+
</div>
|
43
|
+
<!-- Panel -->
|
44
|
+
|
45
|
+
</div>
|
46
|
+
</div>
|
47
|
+
<!-- Page Content -->
|
@@ -0,0 +1,54 @@
|
|
1
|
+
<p id="notice"><%= notice %></p>
|
2
|
+
|
3
|
+
<p>
|
4
|
+
<strong>Page Title:</strong>
|
5
|
+
<%= @marketing_optimization.marketing_optimization_page_title %>
|
6
|
+
</p>
|
7
|
+
|
8
|
+
<p>
|
9
|
+
<strong>Page Description:</strong>
|
10
|
+
<%= @marketing_optimization.marketing_optimization_page_description %>
|
11
|
+
</p>
|
12
|
+
|
13
|
+
<p>
|
14
|
+
<strong>Open Graph Title:</strong>
|
15
|
+
<%= @marketing_optimization.marketing_optimization_og_title %>
|
16
|
+
</p>
|
17
|
+
|
18
|
+
<p>
|
19
|
+
<strong>Open Graph Description:</strong>
|
20
|
+
<%= @marketing_optimization.marketing_optimization_og_description %>
|
21
|
+
</p>
|
22
|
+
|
23
|
+
<p>
|
24
|
+
<strong>Open Graph Type:</strong>
|
25
|
+
<%= @marketing_optimization.marketing_optimization_og_type %>
|
26
|
+
</p>
|
27
|
+
|
28
|
+
<p>
|
29
|
+
<strong>Open Graph URL:</strong>
|
30
|
+
<%= @marketing_optimization.marketing_optimization_og_url %>
|
31
|
+
</p>
|
32
|
+
|
33
|
+
<p>
|
34
|
+
<strong>Twitter Title:</strong>
|
35
|
+
<%= @marketing_optimization.marketing_optimization_twitter_title %>
|
36
|
+
</p>
|
37
|
+
|
38
|
+
<p>
|
39
|
+
<strong>Twitter Description:</strong>
|
40
|
+
<%= @marketing_optimization.marketing_optimization_twitter_description %>
|
41
|
+
</p>
|
42
|
+
|
43
|
+
<p>
|
44
|
+
<strong>Twitter Type:</strong>
|
45
|
+
<%= @marketing_optimization.marketing_optimization_twitter_type %>
|
46
|
+
</p>
|
47
|
+
|
48
|
+
<p>
|
49
|
+
<strong>Twitter URL:</strong>
|
50
|
+
<%= @marketing_optimization.marketing_optimization_twitter_url %>
|
51
|
+
</p>
|
52
|
+
|
53
|
+
<%= link_to 'Edit', edit_marketing_optimization_path(@marketing_optimization) %> |
|
54
|
+
<%= link_to 'Back', marketing_optimizations_path %>
|
@@ -0,0 +1,27 @@
|
|
1
|
+
<!-- Form - Category -->
|
2
|
+
<%= form_with(model: post_category, local: true) do |form| %>
|
3
|
+
|
4
|
+
<!-- PHCNotifi Render Validation -->
|
5
|
+
<%= render "phcdevworks_notifications/bootstrap/validations", :object => @post_category %>
|
6
|
+
<!-- PHCNotifi Render Validation -->
|
7
|
+
|
8
|
+
<!-- Form Input Fields -->
|
9
|
+
<div class="form-group">
|
10
|
+
<%= form.label :post_category_name, "Category Name" %>
|
11
|
+
<%= form.text_field :post_category_name, class: "form-control" %>
|
12
|
+
</div>
|
13
|
+
|
14
|
+
<div class="form-group">
|
15
|
+
<label>Attach SEO Data</label>
|
16
|
+
<%= collection_select(:post_category, :optimization_id, PhcdevworksCoreModules::Marketing::Optimization.order("marketing_optimization_page_title"), :id, :marketing_optimization_page_title, {}, {class: "form-control"}) %>
|
17
|
+
</div>
|
18
|
+
<!-- Form Input Fields -->
|
19
|
+
|
20
|
+
<!-- Form Submition Button -->
|
21
|
+
<div class="actions">
|
22
|
+
<%= form.submit class: "btn btn-primary" %>
|
23
|
+
</div>
|
24
|
+
<!-- For Submition Button -->
|
25
|
+
|
26
|
+
<% end %>
|
27
|
+
<!-- Form - Category -->
|
@@ -2,7 +2,7 @@
|
|
2
2
|
<% phc_title "Category Manager" %>
|
3
3
|
<% phc_title_tagline "Update Category" %>
|
4
4
|
<% phc_breadcrumb_one yield(:phc_title_tagline) %>
|
5
|
-
<% phc_breadcrumb_two link_to "Category Index", phcdevworks_core_modules.
|
5
|
+
<% phc_breadcrumb_two link_to "Category Index", phcdevworks_core_modules.post_categories_path %>
|
6
6
|
<!-- PHCTitleSEO Title Variables -->
|
7
7
|
|
8
8
|
<!-- Page Bradcrumbs -->
|
@@ -33,7 +33,7 @@
|
|
33
33
|
<div class="panel-body">
|
34
34
|
|
35
35
|
<!-- Edit Form -->
|
36
|
-
<%= render 'form',
|
36
|
+
<%= render 'form', post_category: @post_category %>
|
37
37
|
<!-- Edit Form -->
|
38
38
|
|
39
39
|
</div>
|
@@ -2,7 +2,7 @@
|
|
2
2
|
<% phc_title "Category Manager" %>
|
3
3
|
<% phc_title_tagline "Category Index" %>
|
4
4
|
<% phc_breadcrumb_one yield(:phc_title_tagline) %>
|
5
|
-
<% phc_breadcrumb_two link_to "Category Index", phcdevworks_core_modules.
|
5
|
+
<% phc_breadcrumb_two link_to "Category Index", phcdevworks_core_modules.post_categories_path %>
|
6
6
|
<!-- PHCTitleSEO Title Variables -->
|
7
7
|
|
8
8
|
<!-- Page Bradcrumbs -->
|
@@ -44,14 +44,14 @@
|
|
44
44
|
</thead>
|
45
45
|
|
46
46
|
<tbody>
|
47
|
-
<% @
|
47
|
+
<% @post_categories.each do |post_category| %>
|
48
48
|
<tr>
|
49
|
-
<td><%=
|
49
|
+
<td><%= post_category.post_category_name %></td>
|
50
50
|
<td>
|
51
51
|
<div class="btn-group d-flex" role="group">
|
52
|
-
<%= link_to "Category Details",
|
53
|
-
<%= link_to "Update Category",
|
54
|
-
<%= link_to "Remove Category",
|
52
|
+
<%= link_to "Category Details", post_category, class: "btn btn-purple btn-xs" %>
|
53
|
+
<%= link_to "Update Category", edit_post_category_path(post_category), class: "btn btn-primary btn-xs" %>
|
54
|
+
<%= link_to "Remove Category", post_category, method: :delete, data: { confirm: "Are you sure? This action cannot be reversed." }, class: "btn btn-danger btn-xs" %>
|
55
55
|
</div>
|
56
56
|
</td>
|
57
57
|
</tr>
|
@@ -63,7 +63,7 @@
|
|
63
63
|
<!-- Index - Table -->
|
64
64
|
|
65
65
|
<!-- New Button -->
|
66
|
-
<%= link_to phcdevworks_core_modules.
|
66
|
+
<%= link_to phcdevworks_core_modules.new_post_category_path, class: "btn btn-primary btn-sm" do %>
|
67
67
|
<i class="fad fa-plus-circle"></i>
|
68
68
|
Add a New Category
|
69
69
|
<% end %>
|
@@ -2,7 +2,7 @@
|
|
2
2
|
<% phc_title "Category Manager" %>
|
3
3
|
<% phc_title_tagline "Add a New Category" %>
|
4
4
|
<% phc_breadcrumb_one yield(:phc_title_tagline) %>
|
5
|
-
<% phc_breadcrumb_two link_to "Category Index", phcdevworks_core_modules.
|
5
|
+
<% phc_breadcrumb_two link_to "Category Index", phcdevworks_core_modules.post_categories_path %>
|
6
6
|
<!-- PHCTitleSEO Title Variables -->
|
7
7
|
|
8
8
|
<!-- Page Bradcrumbs -->
|
@@ -33,7 +33,7 @@
|
|
33
33
|
<div class="panel-body">
|
34
34
|
|
35
35
|
<!-- New Form -->
|
36
|
-
<%= render 'form',
|
36
|
+
<%= render 'form', post_category: @post_category %>
|
37
37
|
<!-- Edit Form -->
|
38
38
|
|
39
39
|
</div>
|
data/config/routes.rb
CHANGED
@@ -1,11 +1,16 @@
|
|
1
1
|
PhcdevworksCoreModules::Engine.routes.draw do
|
2
2
|
|
3
|
-
|
4
|
-
|
5
|
-
|
6
|
-
|
3
|
+
# Routes for Posts
|
4
|
+
namespace :post do
|
5
|
+
resources :categories, class_name: 'Post::Category'
|
6
|
+
end
|
7
7
|
|
8
|
-
|
9
|
-
|
8
|
+
# Routes for Marketing
|
9
|
+
namespace :marketing do
|
10
|
+
resources :optimizations, class_name: 'Marketing::Optimization'
|
11
|
+
end
|
12
|
+
|
13
|
+
# Mount Routes
|
14
|
+
mount PhcdevworksAccounts::Engine, :at => '/'
|
10
15
|
|
11
16
|
end
|