Thread Rating:
  • 1 Vote(s) - 5 Average
  • 1
  • 2
  • 3
  • 4
  • 5
ItemManager 2.0
#14
Hi Bigin,

Here's my bug report for ItemManager 2.0, a few suggestions and a simple question:

1-If you sort the categories with drag&drop, go to another tab and return to the Categories tab, the categories disappear. The way to get them back is to go to Settings and click on "Save".

2-If you sort the categories with drag&drop and then double-click on the position number to change it, some weird characters appear there ("/>).

3-The ascending or descending sort order you select in the settings for categories is not working. It's always descending.

4-The position number in the category list does not always match the number you see when editing a category. In general, there is a problem with the ordering of categories.

5-The input field that appears when you double click on a category or item position number can't be changed with the mouse, only with keyboard. If you click on the up or down arrows to change the number, the field disappears.

6-Reordering the items with drag&drop works as expected: if you have 4 items and drag 3 to first position, 1 becomes 2 and 2 becomes 3. But when editing an item, changing the position number has no effect. It can't be changed, even though the field is editable. I think it should have the same effect as drag&drop, especially if we consider that drag&drop is not always possible when there are more than 50 items in a category.

7-When creating a new item, I think the position field should be pre-filled with the next available position. That is the number the field will get if nothing is written.

8-If you double click on a position in the items list ("view all" tab), you can change it numerically. This has a strange effect. Position numbers of other items do not change accordingly, and repeated position numbers are displayed. If there are repeated position numbers, drag&drop stops working properly.

9-If you create a new custom field with a name that already exists and click on "confirm", you get a message that says "The field names must be unique. The duplicates have been removed." That might be fine, more or less, if the removed field is always the new one. But if you try to rename an existing custom field and write the name of another existing custom field (by mistake or for whatever reason), one of them is removed without previous warning, and that's not good. I think the best thing you can do here is to do nothing, just not to rename the custom field.

10-When you're editing a category or an item, you can see some information that can't be edited: id, Created date and Updated date. It's OK, but I think it should be presented in a different and more compact way, not as if they were editable fields. Perhaps above, and all in a line. And when you're editing or creating an item, I think it would be useful to see there the category to which it belongs.

11-I think the "add new" button shouldn't be highlighted when you're editing an item. It's a bit confusing. You're not adding a new item, you're editing an existing one. And when you add a new item, the "add new" button should turn black after clicking on "save", indicating that if you change the data and click "save" again, you won't be adding an item, but changing the one you've just created. In short, I think the "add new" button should be highlighted only when the immediate effect of clicking "save" is to create a new item.

12-There is a checkbox to the right of the image fields. I don't know what it is for, and if selected, the selection is not saved.

13-If you delete custom fields from a category, the data is not deleted from the XML files of items, creating unnecessarily large files. If XML files of all items must be loaded into RAM to make operations with them, it does not seem a good idea to have useless tags and data there.

I noticed that now a variable number of images can be uploaded to an image field. This is fine, it makes this plugin a little more flexible, but it's a limited solution: You can't add descriptions to images, alt or title attributes, links... If items of different categories could be freely combined, flexibility would be much higher. The problem of iterating through irregular arrays or objects could be easily solved, I think: "if the object is of type 1, do this, if it's of type 2, do that..." (but I'm not sure that would be so easy, I'm not expert in PHP).

As I said in previous posts, I've been searching for quite some time the perfect CMS for people with low computer skills who want a small website. Very, very simple for the end user, but very flexible for the designer. Something that allow the end user to combine fragments of predesigned HTML code, change their content, and nothing else. The closest thing I've found is this, but it's not exactly a CMS, and it's quite expensive if you want to access the source code. ItemManager is a good solution. I especially like the automated management of the images, and the possibility to hide all tabs in GetSimple except ItemManager, thus avoiding potential problems with the unskilled users. It doesn't fit exactly with what I'm looking for, but it's the best solution I've found so far.


And now the question. I've been reading the API reference. I'm not sure this is the shorter or the most efficient way to create a custom field... but it works:

PHP Code:
$manager = new IManager();
$fields $manager->getFieldsClass();
//Create a XML fields file for category with id=2 if it doesn't exist:
if (!$fields->fieldsExists(2)) {$fields->createFields(2);}
$fields->init(2);
//Create a custom text field "my_field_name" in the category with id=2 if it doesn't exist:
$my_field $fields->getField('name=my_field_name');
if(!
$my_field) {
$newField $manager->newField(2);
$newField->name 'my_field_name';
$newField->type 'text';
$newField->save();


Where and in what file can I write this code (or similar) if I want certain custom fields to appear by default in each new category created from the back-end?

That's all!
Reply


Messages In This Thread
ItemManager 2.0 - by Bigin - 2015-05-18, 02:56:36
RE: ItemManager 2.0 - by datiswous - 2015-05-21, 01:15:51
RE: ItemManager 2.0 - by Bigin - 2015-05-21, 02:20:13
RE: ItemManager 2.0 - by datiswous - 2015-05-21, 01:32:32
RE: ItemManager 2.0 - by datiswous - 2015-05-21, 03:08:40
RE: ItemManager 2.0 - by Bigin - 2015-05-21, 04:03:39
RE: ItemManager 2.0 - by Tyblitz - 2015-05-21, 11:29:13
RE: ItemManager 2.0 - by Bigin - 2015-05-21, 12:25:19
RE: ItemManager 2.0 - by Bigin - 2015-05-21, 15:33:07
RE: ItemManager 2.0 - by Tyblitz - 2015-05-21, 20:54:36
RE: ItemManager 2.0 - by Bigin - 2015-05-22, 00:42:40
RE: ItemManager 2.0 - by Tyblitz - 2015-06-05, 03:21:51
RE: ItemManager 2.0 - by Bigin - 2015-06-05, 07:43:53
RE: ItemManager 2.0 - by smsHH - 2017-01-04, 08:54:42
RE: ItemManager 2.0 - by Rico - 2015-06-10, 08:51:55
RE: ItemManager 2.0 - by Bigin - 2015-06-10, 23:43:37
RE: ItemManager 2.0 - by Rico - 2015-06-11, 22:17:27
RE: ItemManager 2.0 - by Erick67 - 2015-08-16, 20:51:10
RE: ItemManager 2.0 - by Bigin - 2015-08-17, 00:21:27
RE: ItemManager 2.0 - by Erick67 - 2015-08-17, 16:20:24
RE: ItemManager 2.0 - by Bigin - 2015-08-17, 18:30:18
RE: ItemManager 2.0 - by Tyblitz - 2015-08-20, 11:06:51
RE: ItemManager 2.0 - by Bigin - 2015-08-17, 18:44:59
RE: ItemManager 2.0 - by Erick67 - 2015-08-17, 20:00:02
RE: ItemManager 2.0 - by Bigin - 2015-08-17, 20:24:11
RE: ItemManager 2.0 - by Bigin - 2015-08-26, 22:47:17
RE: ItemManager 2.0 - by Bigin - 2015-08-27, 19:32:07
RE: ItemManager 2.0 - by Rico - 2015-09-08, 09:15:36
RE: ItemManager 2.0 - by VIPStephan - 2015-11-13, 19:50:53
RE: ItemManager 2.0 - by Bigin - 2015-11-13, 21:13:49
RE: ItemManager 2.0 - by VIPStephan - 2015-11-13, 21:32:00
RE: ItemManager 2.0 - by xrmarcis - 2016-01-31, 14:00:57
RE: ItemManager 2.0 - by Bigin - 2016-01-31, 17:23:56
RE: ItemManager 2.0 - by xrmarcis - 2016-01-31, 23:53:28
RE: ItemManager 2.0 - by Bigin - 2016-02-01, 00:41:29
RE: ItemManager 2.0 - by xrmarcis - 2016-02-01, 01:11:00
RE: ItemManager 2.0 - by xrmarcis - 2016-02-01, 01:17:48
RE: ItemManager 2.0 - by Bigin - 2016-02-01, 02:09:29
RE: ItemManager 2.0 - by xrmarcis - 2016-02-01, 01:59:42
RE: ItemManager 2.0 - by Bigin - 2016-02-01, 03:22:17
RE: ItemManager 2.0 - by Bigin - 2016-02-20, 06:22:18
RE: ItemManager 2.0 - by samdecks - 2016-03-06, 11:11:08
RE: ItemManager 2.0 - by Bigin - 2016-03-06, 18:33:56
RE: ItemManager 2.0 - by Bigin - 2016-03-09, 00:55:47
RE: ItemManager 2.0 - by Oleg06 - 2016-03-09, 07:10:38
RE: ItemManager 2.0 - by Bigin - 2016-03-09, 09:58:47
RE: ItemManager 2.0 - by Oleg06 - 2016-03-09, 16:43:44
RE: ItemManager 2.0 - by Bigin - 2016-03-09, 20:29:10
RE: ItemManager 2.0 - by Bigin - 2016-04-07, 20:06:16
RE: ItemManager 2.0 - by nihaha - 2016-04-16, 20:12:56
RE: ItemManager 2.0 - by Bigin - 2016-04-16, 22:13:26
RE: ItemManager 2.0 - by nihaha - 2016-04-17, 00:57:40
RE: ItemManager 2.0 - by Bigin - 2016-04-17, 02:13:08
RE: ItemManager 2.0 - by nihaha - 2016-04-17, 02:23:00
RE: ItemManager 2.0 - by Bigin - 2016-04-17, 02:34:34
RE: ItemManager 2.0 - by nihaha - 2016-04-17, 02:53:56
RE: ItemManager 2.0 - by Bigin - 2016-04-17, 03:22:33
RE: ItemManager 2.0 - by Bigin - 2016-06-21, 21:27:24
RE: ItemManager 2.0 - by Tyblitz - 2016-06-25, 19:59:03
RE: ItemManager 2.0 - by Bigin - 2016-06-25, 21:22:57
RE: ItemManager 2.0 - by jeckyl - 2016-07-27, 23:30:06
RE: ItemManager 2.0 - by jeckyl - 2016-07-27, 23:42:29
RE: ItemManager 2.0 - by Bigin - 2016-07-28, 01:25:19
RE: ItemManager 2.0 - by jeckyl - 2016-07-28, 01:44:53
RE: ItemManager 2.0 - by Bigin - 2016-07-28, 02:05:50
RE: ItemManager 2.0 - by Bigin - 2016-08-16, 20:12:02
RE: ItemManager 2.0 - by Inugami - 2016-08-26, 13:26:12
RE: ItemManager 2.0 - by Bigin - 2016-08-27, 19:22:24
RE: ItemManager 2.0 - by Riianna - 2016-08-29, 04:49:15
RE: ItemManager 2.0 - by Bigin - 2016-08-29, 05:20:55
RE: ItemManager 2.0 - by Bigin - 2016-08-29, 19:50:30
RE: ItemManager 2.0 - by Riianna - 2016-08-31, 02:41:46
RE: ItemManager 2.0 - by Bigin - 2016-08-31, 03:06:03
RE: ItemManager 2.0 - by Riianna - 2016-08-31, 04:05:26
RE: ItemManager 2.0 - by datiswous - 2016-09-08, 01:28:33
RE: ItemManager 2.0 - by Bigin - 2016-09-08, 03:00:17
RE: ItemManager 2.0 - by Bigin - 2016-09-08, 03:22:25
RE: ItemManager 2.0 - by datiswous - 2016-09-08, 04:11:56
RE: ItemManager 2.0 - by pinguin - 2016-09-13, 09:11:41
RE: ItemManager 2.0 - by Bigin - 2016-09-13, 16:45:55
RE: ItemManager 2.0 - by Bigin - 2016-09-14, 02:31:02
RE: ItemManager 2.0 - by tomot - 2016-10-10, 02:24:40
RE: ItemManager 2.0 - by Bigin - 2016-10-10, 02:47:18
RE: ItemManager 2.0 - by dsinning - 2016-11-07, 10:28:54
RE: ItemManager 2.0 - by Bigin - 2016-11-07, 16:54:50
RE: ItemManager 2.0 - by morvy - 2016-11-29, 20:43:17
RE: ItemManager 2.0 - by Bigin - 2016-11-29, 21:19:55
RE: ItemManager 2.0 - by morvy - 2016-11-30, 03:51:10
RE: ItemManager 2.0 - by Bigin - 2016-11-30, 04:00:25
RE: ItemManager 2.0 - by morvy - 2016-11-30, 04:38:31
RE: ItemManager 2.0 - by Bigin - 2017-01-04, 17:39:17
RE: ItemManager 2.0 - by Bigin - 2017-01-04, 18:01:57
RE: ItemManager 2.0 - by smsHH - 2017-01-04, 18:36:55
RE: ItemManager 2.0 - by Bigin - 2017-01-04, 19:40:36
RE: ItemManager 2.0 - by smsHH - 2017-01-04, 19:46:50
RE: ItemManager 2.0 - by smsHH - 2017-01-07, 00:24:06
RE: ItemManager 2.0 - by Bigin - 2017-01-07, 02:30:57
RE: ItemManager 2.0 - by smsHH - 2017-01-07, 07:38:33
RE: ItemManager 2.0 - by smsHH - 2017-01-08, 22:29:40
RE: ItemManager 2.0 - by Bigin - 2017-01-09, 01:43:26
RE: ItemManager 2.0 - by smsHH - 2017-01-09, 05:18:31
RE: ItemManager 2.0 - by Bigin - 2017-01-09, 06:11:40
RE: ItemManager 2.0 - by smsHH - 2017-01-09, 08:39:07
RE: ItemManager 2.0 - by morvy - 2017-01-30, 07:52:16
RE: ItemManager 2.0 - by Bigin - 2017-01-30, 17:14:24
RE: ItemManager 2.0 - by wakh - 2017-02-07, 05:12:40
RE: ItemManager 2.0 - by Bigin - 2017-02-07, 05:21:29
RE: ItemManager 2.0 - by wakh - 2017-02-07, 05:30:19
RE: ItemManager 2.0 - by Bigin - 2017-02-07, 05:51:13
RE: ItemManager 2.0 - by wakh - 2017-02-07, 06:13:43
RE: ItemManager 2.0 - by Bigin - 2017-02-07, 06:31:40
RE: ItemManager 2.0 - by smsHH - 2017-02-10, 09:48:04
RE: ItemManager 2.0 - by Bigin - 2017-02-10, 19:46:32
RE: ItemManager 2.0 - by smsHH - 2017-02-11, 02:10:02
RE: ItemManager 2.0 - by Bigin - 2017-02-11, 05:37:42
RE: ItemManager 2.0 - by smsHH - 2017-02-11, 06:10:21
RE: ItemManager 2.0 - by Tyblitz - 2017-02-11, 09:47:54
RE: ItemManager 2.0 - by Bigin - 2017-02-11, 21:23:45
RE: ItemManager 2.0 - by smsHH - 2017-02-12, 00:55:53
RE: ItemManager 2.0 - by Bigin - 2017-02-12, 01:32:32
RE: ItemManager 2.0 - by smsHH - 2017-02-12, 01:50:51
RE: ItemManager 2.0 - by Bigin - 2017-02-12, 03:22:28
RE: ItemManager 2.0 - by smsHH - 2017-02-14, 03:24:48
RE: ItemManager 2.0 - by Bigin - 2017-02-17, 03:48:37
RE: ItemManager 2.0 - by smsHH - 2017-02-17, 07:46:36
RE: ItemManager 2.0 - by Bigin - 2017-02-17, 17:04:21
RE: ItemManager 2.0 - by smsHH - 2017-02-17, 18:15:17
RE: ItemManager 2.0 - by ChronosMe1 - 2017-02-19, 00:19:18
RE: ItemManager 2.0 - by Bigin - 2017-02-19, 01:40:15
RE: ItemManager 2.0 - by Bigin - 2017-02-19, 02:05:20
RE: ItemManager 2.0 - by ChronosMe1 - 2017-02-19, 04:17:33
RE: ItemManager 2.0 - by smsHH - 2017-02-25, 05:50:52
RE: ItemManager 2.0 - by Bigin - 2017-02-25, 17:50:48
RE: ItemManager 2.0 - by smsHH - 2017-02-25, 19:03:24
RE: ItemManager 2.0 - by Bigin - 2017-02-25, 19:53:50
RE: ItemManager 2.0 - by ChronosMe1 - 2017-04-04, 23:46:26
RE: ItemManager 2.0 - by Bigin - 2017-04-05, 00:14:08
RE: ItemManager 2.0 - by ChronosMe1 - 2017-04-05, 01:23:07
RE: ItemManager 2.0 - by Bigin - 2017-04-05, 02:28:43
RE: ItemManager 2.0 - by Bigin - 2017-04-05, 02:55:30
RE: ItemManager 2.0 - by ChronosMe1 - 2017-04-05, 03:32:27
RE: ItemManager 2.0 - by Bigin - 2017-04-05, 03:49:08
RE: ItemManager 2.0 - by ChronosMe1 - 2017-04-05, 03:57:53
RE: ItemManager 2.0 - by Bigin - 2017-04-05, 04:06:15
RE: ItemManager 2.0 - by ChronosMe1 - 2017-04-05, 04:19:02
RE: ItemManager 2.0 - by Bigin - 2017-04-05, 04:23:13
RE: ItemManager 2.0 - by Bigin - 2017-04-05, 06:01:33
RE: ItemManager 2.0 - by ChronosMe1 - 2017-04-05, 15:24:12
RE: ItemManager 2.0 - by Bigin - 2017-04-05, 16:36:58
RE: ItemManager 2.0 - by ChronosMe1 - 2017-04-05, 20:12:16
RE: ItemManager 2.0 - by Bigin - 2017-04-05, 20:59:55
RE: ItemManager 2.0 - by ChronosMe1 - 2017-04-05, 22:09:57
RE: ItemManager 2.0 - by angelo - 2017-09-19, 13:09:15
RE: ItemManager 2.0 - by Bigin - 2017-09-19, 18:22:13
RE: ItemManager 2.0 - by angelo - 2017-09-19, 22:17:27
RE: ItemManager 2.0 - by Bigin - 2017-09-19, 23:31:33
RE: ItemManager 2.0 - by angelo - 2017-09-20, 13:39:38
RE: ItemManager 2.0 - by Bigin - 2017-09-20, 15:40:11
RE: ItemManager 2.0 - by Bigin - 2018-01-25, 05:28:59
RE: ItemManager 2.0 - by Fabmue - 2018-02-13, 11:59:00
RE: ItemManager 2.0 - by Bigin - 2018-02-13, 17:10:09
RE: ItemManager 2.0 - by Fabmue - 2018-02-13, 22:41:19
RE: ItemManager 2.0 - by Fabmue - 2018-02-14, 01:18:12
RE: ItemManager 2.0 - by Bigin - 2018-02-14, 05:11:45
RE: ItemManager 2.0 - by Fabmue - 2018-02-14, 05:47:19
RE: ItemManager 2.0 - by angelo - 2018-06-26, 17:28:57
RE: ItemManager 2.0 - by Bigin - 2018-06-26, 21:01:49
RE: ItemManager 2.0 - by Bigin - 2018-06-26, 22:05:28
RE: ItemManager 2.0 - by Bigin - 2018-06-27, 15:57:14
RE: ItemManager 2.0 - by angelo - 2018-06-27, 18:24:56
RE: ItemManager 2.0 - by Bigin - 2018-06-27, 19:30:39
RE: ItemManager 2.0 - by Bigin - 2018-09-03, 00:08:46
RE: ItemManager 2.0 - by JAKE - 2018-09-03, 01:21:01
RE: ItemManager 2.0 - by Bigin - 2018-09-03, 03:20:56
RE: ItemManager 2.0 - by JAKE - 2018-09-04, 02:12:48
RE: ItemManager 2.0 - by Bigin - 2018-09-04, 03:03:59
RE: ItemManager 2.0 - by JAKE - 2018-09-04, 06:18:02
RE: ItemManager 2.0 - by Bigin - 2018-09-04, 06:33:12
RE: ItemManager 2.0 - by JAKE - 2018-09-04, 07:02:10
RE: ItemManager 2.0 - by Bigin - 2018-09-04, 18:57:23
RE: ItemManager 2.0 - by Fabmue - 2018-09-19, 21:25:24
RE: ItemManager 2.0 - by Bigin - 2018-09-19, 21:42:41
RE: ItemManager 2.0 - by Fabmue - 2018-09-19, 22:00:02
RE: ItemManager 2.0 - by JAKE - 2018-09-21, 02:58:07
RE: ItemManager 2.0 - by Bigin - 2018-09-21, 03:51:09
RE: ItemManager 2.0 - by JAKE - 2018-09-21, 05:09:06
RE: ItemManager 2.0 - by Bigin - 2018-09-21, 03:37:49
RE: ItemManager 2.0 - by Bigin - 2018-09-21, 06:11:12
RE: ItemManager 2.0 - by JAKE - 2018-09-24, 20:27:47
RE: ItemManager 2.0 - by Bigin - 2018-09-25, 02:17:36
RE: ItemManager 2.0 - by Bigin - 2018-09-21, 16:12:43
RE: ItemManager 2.0 - by PGK37 - 2019-01-24, 05:06:06
RE: ItemManager 2.0 - by Bigin - 2019-01-24, 13:41:25
RE: ItemManager 2.0 - by PGK37 - 2019-01-24, 18:45:13
RE: ItemManager 2.0 - by Bigin - 2019-01-24, 20:22:13
RE: ItemManager 2.0 - by PGK37 - 2019-01-24, 20:47:50
RE: ItemManager 2.0 - by Bigin - 2019-01-24, 21:12:34
RE: ItemManager 2.0 - by PGK37 - 2019-01-24, 21:20:46
RE: ItemManager 2.0 - by Bigin - 2019-01-24, 21:51:30
RE: ItemManager 2.0 - by PGK37 - 2019-01-24, 23:14:52
RE: ItemManager 2.0 - by Bigin - 2019-01-24, 23:44:29
RE: ItemManager 2.0 - by PGK37 - 2019-01-25, 01:52:54
RE: ItemManager 2.0 - by PGK37 - 2019-01-25, 02:38:56
RE: ItemManager 2.0 - by Bigin - 2019-01-25, 03:01:16
RE: ItemManager 2.0 - by Felix - 2020-04-25, 07:37:33
RE: ItemManager 2.0 - by Bigin - 2020-04-25, 15:33:00
RE: ItemManager 2.0 - by Felix - 2020-04-26, 06:03:53
RE: ItemManager 2.0 - by Bigin - 2020-04-26, 07:06:56
RE: ItemManager 2.0 - by Felix - 2020-04-26, 19:45:03
RE: ItemManager 2.0 - by Bigin - 2020-04-26, 22:21:34
RE: ItemManager 2.0 - by Felix - 2020-04-27, 00:52:33
RE: ItemManager 2.0 - by Bigin - 2020-04-27, 01:19:55
RE: ItemManager 2.0 - by Felix - 2020-04-27, 03:09:12
RE: ItemManager 2.0 - by Bigin - 2020-04-27, 15:41:56
RE: ItemManager 2.0 - by Felix - 2020-04-27, 19:56:03
RE: ItemManager 2.0 - by Felix - 2020-04-28, 00:21:41
RE: ItemManager 2.0 - by Bigin - 2020-04-28, 01:06:18
RE: ItemManager 2.0 - by Felix - 2020-04-28, 02:26:08
RE: ItemManager 2.0 - by Bigin - 2020-04-28, 03:29:04
RE: ItemManager 2.0 - by Felix - 2020-04-28, 03:59:07
RE: ItemManager 2.0 - by Bigin - 2020-04-28, 04:43:07
RE: ItemManager 2.0 - by Felix - 2020-04-28, 05:16:15
RE: ItemManager 2.0 - by Bigin - 2020-04-28, 15:05:14
RE: ItemManager 2.0 - by Felix - 2020-04-28, 22:00:30
RE: ItemManager 2.0 - by Bigin - 2020-04-28, 22:35:46
RE: ItemManager 2.0 - by Felix - 2020-04-30, 04:02:33
RE: ItemManager 2.0 - by Bigin - 2020-04-30, 04:41:10
RE: ItemManager 2.0 - by Felix - 2020-04-30, 06:08:28
RE: ItemManager 2.0 - by Bigin - 2020-04-30, 11:24:45
RE: ItemManager 2.0 - by Felix - 2020-04-30, 16:13:03
RE: ItemManager 2.0 - by Bigin - 2020-04-30, 17:04:32
RE: ItemManager 2.0 - by Felix - 2020-04-30, 19:06:19
RE: ItemManager 2.0 - by Felix - 2020-05-01, 19:37:27
RE: ItemManager 2.0 - by Bigin - 2020-05-01, 21:03:20
RE: ItemManager 2.0 - by Felix - 2020-05-01, 21:45:34
RE: ItemManager 2.0 - by Felix - 2020-05-03, 19:34:44
RE: ItemManager 2.0 - by Bigin - 2020-05-03, 21:25:43
RE: ItemManager 2.0 - by Felix - 2020-05-03, 22:13:06
RE: ItemManager 2.0 - by Bigin - 2020-05-03, 22:28:37
RE: ItemManager 2.0 - by Felix - 2020-05-03, 22:38:11
RE: ItemManager 2.0 - by Bigin - 2020-05-03, 22:47:37
RE: ItemManager 2.0 - by Felix - 2020-05-03, 23:07:12
RE: ItemManager 2.0 - by Bigin - 2020-05-03, 23:56:21
RE: ItemManager 2.0 - by Felix - 2020-05-13, 05:16:48
RE: ItemManager 2.0 - by Felix - 2020-05-13, 05:33:39
RE: ItemManager 2.0 - by Bigin - 2020-05-13, 14:55:21
RE: ItemManager 2.0 - by Felix - 2020-05-13, 21:17:55
RE: ItemManager 2.0 - by Felix - 2020-05-13, 21:24:23
RE: ItemManager 2.0 - by Bigin - 2020-05-14, 00:48:52
RE: ItemManager 2.0 - by Felix - 2020-05-14, 19:14:48
RE: ItemManager 2.0 - by Bigin - 2020-05-14, 21:07:58
RE: ItemManager 2.0 - by Felix - 2020-05-18, 06:31:32
RE: ItemManager 2.0 - by Felix - 2020-05-20, 17:27:50
RE: ItemManager 2.0 - by Bigin - 2020-05-21, 22:59:43
RE: ItemManager 2.0 - by Felix - 2020-06-15, 17:26:51
RE: ItemManager 2.0 - by Bigin - 2020-06-15, 17:34:56
RE: ItemManager 2.0 - by Felix - 2020-07-24, 03:39:40
RE: ItemManager 2.0 - by Bigin - 2020-07-24, 04:24:18
RE: ItemManager 2.0 - by Felix - 2020-07-24, 04:35:26
RE: ItemManager 2.0 - by Felix - 2020-08-07, 04:38:16
RE: ItemManager 2.0 - by Bigin - 2020-08-07, 15:33:56
RE: ItemManager 2.0 - by Felix - 2020-08-07, 18:25:28
RE: ItemManager 2.0 - by Bigin - 2020-08-10, 15:30:24
RE: ItemManager 2.0 - by Bigin - 2020-08-10, 16:45:29
RE: ItemManager 2.0 - by Felix - 2020-08-11, 07:09:31
RE: ItemManager 2.0 - by Bigin - 2020-08-11, 14:30:27
RE: ItemManager 2.0 - by Felix - 2020-08-11, 07:10:58
RE: ItemManager 2.0 - by Bigin - 2020-08-11, 14:22:21
RE: ItemManager 2.0 - by Felix - 2020-08-11, 20:28:06
RE: ItemManager 2.0 - by Bigin - 2020-08-11, 20:42:45
RE: ItemManager 2.0 - by Felix - 2020-08-12, 07:15:53
RE: ItemManager 2.0 - by Bigin - 2020-08-12, 16:55:11
RE: ItemManager 2.0 - by Felix - 2020-08-17, 07:47:05
RE: ItemManager 2.0 - by Felix - 2020-08-17, 07:47:42
RE: ItemManager 2.0 - by Bigin - 2020-08-17, 19:50:28
RE: ItemManager 2.0 - by Felix - 2020-08-18, 01:50:40
RE: ItemManager 2.0 - by Felix - 2020-08-18, 03:10:33
RE: ItemManager 2.0 - by Bigin - 2020-08-18, 15:11:17
RE: ItemManager 2.0 - by Felix - 2020-08-24, 05:51:41
RE: ItemManager 2.0 - by Felix - 2020-08-24, 16:07:20
RE: ItemManager 2.0 - by Bigin - 2020-08-24, 16:51:29
RE: ItemManager 2.0 - by Bigin - 2020-08-24, 19:01:19
RE: ItemManager 2.0 - by Felix - 2020-08-25, 07:32:03
RE: ItemManager 2.0 - by Bigin - 2020-08-25, 17:08:31



Users browsing this thread: 2 Guest(s)