Duplicate of addon Proevents

Permalink
Hi, I need a duplicate of the proevents addon. So a complete separate install. Allready purchased this addon.
Please send me a quote or message me for more info.
Cheers
Kris

Dutchwave
 
RadiantWeb replied on at Permalink Reply
RadiantWeb
I must be reading this all wrong!?!

This sounds like you're wanting someone to "copy" my hard work for use so that you can avoid having to purchase an additional license?

Please tell me I am reading this wrong.

ChadStrat
Dutchwave replied on at Permalink Reply
Dutchwave
No Chad, your reading it wrong.
I just want a duplicate. If I order another one I guess it will use the same database input and other things that might go wrong.
So if I need another license I will get it. Just wanna use the same addon twice on the same site!

As I have asked for a quote on this and and the other thing for over a month now I'm ending up here.
RadiantWeb replied on at Permalink Reply
RadiantWeb
I think you should describe in more detail what you're after.

I'm having a hard time understanding what you want? Same addon twice on one site?

PE is so flexible with four different filtering options, why not just use one license and set your site up efficiently?

Can describe what you are trying to get to?

C
Dutchwave replied on at Permalink Reply
Dutchwave
Thanks for responding.

Its mainly a reason because of permissions. There will be 2 main events say Activities and Agenda that need to be maintained by different managers. To make sure its easy for them to add an item I want these 2 completely separated. So some managers will only see "add activities" and others "add Agenda item".

I hear you, otherwise it wouldn't make sense as there would be enough filters.

Installing the same addon twice would separate these 2 completely, but that wont work without changes?
Or am I missing here something?
RadiantWeb replied on at Permalink Reply
RadiantWeb
I would stay as FAR away as you're thinking right now as possible. lol Disaster all over the place down the road for you if you go this rout. ha ha

At all costs, always always always avoid forking any addon. At all costs! What you lose is support, updates, new features, code improvements...and you gain SO little.

A much cleaner way to do this would be to simply do this:

1 - install the page_selector attribute: http://www.concrete5.org/marketplace/addons/page-selector-attribute...

2 - create a new user attribute called "use_event_section" using this attribute type

3 - replace code where the section attribute is printed out (both in the tools pop-up code, and the dashboard app) with this:

<?php
Loader::model('userinfo');
$u = new User();
$ui = UserInfo::getByID($u->uID);
if($ui->getAttribute('use_event_section')){
   $hide_section = true;
   $cParentID == $ui->getAttribute('use_event_section');
}
if(!$hide_section){
?>
<td class="subheader"  colspan="1">
   <div class="clearfix">
      <strong><?php  echo $form->label('cParentID', t('Section'))?></strong>
      <div class="input">
      <?php   if (count($sections) == 0) { ?>


ChadStrat
RadiantWeb replied on at Permalink Reply
RadiantWeb
What this does is this:

user logs in, goes to create an event:

- if the user has the page_select attribute "use_event_section", then it will hide the option to change the section, and then pre-set the section page value to the page defined in that attribute.

So if you want users to be able to decide where in the site to toss events up...then do not set that attribute for them.

But if you want to restrict where users can post, then just define it, and it will default to that on a per-user basis.

ChadStrat
Dutchwave replied on at Permalink Reply
Dutchwave
Your suggested way worked out for me.
I does make it a bit more challenging finding correct names as they are not events and 2 total different things.

This will also give me the option for hiding some other attributes if needed.

thanks!