Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[4.0] Plg parentassociations #17881

Closed
Closed
Changes from 1 commit
Commits
Show all changes
61 commits
Select commit Hold shift + click to select a range
93316f8
Update joomla.sql
christianboulbi Aug 31, 2017
4b84f8a
Update joomla.sql
christianboulbi Aug 31, 2017
ee85e1a
Update default.php
christianboulbi Aug 31, 2017
8abb641
Update AssociationsHelper.php
christianboulbi Aug 31, 2017
c0260e2
First Version of parentassociations plugin
christianboulbi Sep 1, 2017
95ca61c
Restore sample testing files
christianboulbi Sep 1, 2017
a9c17f9
Update articleassociations.xml
christianboulbi Sep 6, 2017
4042619
Update default.php
christianboulbi Sep 6, 2017
0d76dcb
Update default.php
christianboulbi Sep 6, 2017
a74c77c
Update articleassociations.xml
christianboulbi Sep 6, 2017
eec4a61
Update default.php
christianboulbi Sep 6, 2017
44412c3
Update default.php
christianboulbi Sep 6, 2017
cb73dc6
Update AssociationsHelper.php
christianboulbi Sep 6, 2017
501ed15
Update joomla.sql
christianboulbi Sep 6, 2017
2340d12
Update joomla.sql
christianboulbi Sep 6, 2017
78801f5
Update articleassociations.php
christianboulbi Sep 6, 2017
26ac16b
Update AssociationsHelper.php
christianboulbi Sep 6, 2017
e6e9114
Update articleassociations.xml
christianboulbi Sep 6, 2017
3c46478
Update articleassociations.xml
christianboulbi Sep 6, 2017
bedfca9
Update articleassociations.php
christianboulbi Sep 6, 2017
3511d68
Update joomla.sql
christianboulbi Sep 6, 2017
9ec58f5
Update default.php
christianboulbi Sep 6, 2017
6aba9f7
Update AssociationsHelper.php
christianboulbi Sep 6, 2017
5b760b4
Update articleassociations.xml
christianboulbi Sep 6, 2017
0424019
Update AssociationsHelper.php
christianboulbi Sep 6, 2017
38825cc
Update articleassociations.php
christianboulbi Sep 6, 2017
4eb770a
Update joomla.sql
christianboulbi Sep 6, 2017
2168e1e
Update joomla.sql
christianboulbi Sep 6, 2017
0c1d977
Update articleassociations.php
christianboulbi Sep 6, 2017
b21e025
Update articleassociations.php
christianboulbi Sep 6, 2017
239c66a
Update articleassociations.php
christianboulbi Sep 6, 2017
ff4e41d
Update articleassociations.php
christianboulbi Sep 6, 2017
c5f3b63
Update articleassociations.php
christianboulbi Sep 6, 2017
8bd1af9
Update articleassociations.php
christianboulbi Sep 6, 2017
f2dd35d
Update articleassociations.php
christianboulbi Sep 6, 2017
538442b
Update articleassociations.php
christianboulbi Sep 6, 2017
d3555e8
Update articleassociations.php
christianboulbi Sep 6, 2017
542522f
Update articleassociations.php
christianboulbi Sep 6, 2017
e291013
Update articleassociations.php
christianboulbi Sep 6, 2017
82fe241
Update articleassociations.php
christianboulbi Sep 6, 2017
57bf3c7
Update articleassociations.php
christianboulbi Sep 6, 2017
23ba4a4
Update articleassociations.php
christianboulbi Sep 6, 2017
bc8b651
Update articleassociations.php
christianboulbi Sep 6, 2017
0a527e8
Update articleassociations.php
christianboulbi Sep 6, 2017
45798f7
Update articleassociations.php
christianboulbi Sep 6, 2017
39f1cd2
Update AssociationsHelper.php
christianboulbi Sep 6, 2017
6ad1f44
Update AssociationsHelper.php
christianboulbi Sep 6, 2017
e1814dd
Update AssociationsHelper.php
christianboulbi Sep 6, 2017
fa2d94c
Update AssociationsHelper.php
christianboulbi Sep 6, 2017
47f444e
Update AssociationsHelper.php
christianboulbi Sep 6, 2017
a9c6fdf
Update AssociationsHelper.php
christianboulbi Sep 6, 2017
48a8b27
Update AssociationsHelper.php
christianboulbi Sep 6, 2017
b7a819a
Update AssociationsHelper.php
christianboulbi Sep 6, 2017
a0e7ad2
Update default.php
christianboulbi Sep 6, 2017
a7a1377
Update default.php
christianboulbi Sep 6, 2017
6a55daa
Update Association.php
perrez Sep 6, 2017
2049c8a
Update Association.php
perrez Sep 6, 2017
eccae50
Update Html.php
perrez Sep 6, 2017
9fda340
Update edit.php
perrez Sep 6, 2017
a64fbf0
Update en-GB.com_associations.ini
perrez Sep 6, 2017
d8becf2
Update Association.php
perrez Sep 7, 2017
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Update joomla.sql
  • Loading branch information
christianboulbi committed Sep 6, 2017
commit 2340d1234ea61f614993b5ef00a974f7cac550fa
8 changes: 4 additions & 4 deletions installation/sql/postgresql/joomla.sql
Original file line number Diff line number Diff line change
Expand Up @@ -2158,11 +2158,11 @@ COMMENT ON COLUMN "#__users"."requireReset" IS 'Require user to reset password o
--

CREATE TABLE IF NOT EXISTS `#__item_associations` (
`id` INTEGER(11) NOT NULL,
`parentid` INTEGER(11) NOT NULL,
`approved` tinyint(1) NOT NULL,
`id` int(10) unsigned NOT NULL AUTO_INCREMENT 'Primary Key',
`parentid` int(10) NOT NULL DEFAULT 0,
`approved` tinyint(1) NOT NULL DEFAULT 0,
PRIMARY KEY (`id`)
);
)ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 DEFAULT COLLATE=utf8mb4_unicode_ci AUTO_INCREMENT=7;

--
-- Table structure for table `#__user_keys`
Expand Down