Home arrow Forum
Home
About
Demo
Forum
FAQ
Live Sites
Feedback

Login





Lost Password?
No account yet? Register
Stay Tuned!
 
Who's Online
We have 2 guests and 1 member online

powered_by Joomla
ME Forum
Welcome, Guest
Please Login or Register.    Lost Password?
Re:I wish more funtionality for Mister Estate (1 viewing) (1) Guest
Go to bottom Post Reply Favoured: 0
TOPIC: Re:I wish more funtionality for Mister Estate
#4787
onejungle (User)
Fresh Boarder
Posts: 2
graphgraph
User Offline Click here to see the profile of this user
I wish more funtionality for Mister Estate 9 Months, 2 Weeks ago Karma: 0  
Hello everyone around

I have a couple of question to do with Mister Estate functionality.


QUESTION 1
Does anyone know how to make Mister Estate assign to different Joomla users “Maximum amount of objects?

If I go to “Mister Estate” backend configuration panel; how can I have more than one user to select the amount of objects to have?

I could have:

Users Objects Selection
User1 (registered) # of objects?
User2 (Author) # of objects?
User3 (Editor) # of objects?
User4 (Publisher) # of objects?
User5……. # of objects?

Or maybe assign the total amount of objects to each user when registering to site.

QUESTION 2
Mister Estate has some nice modules to show users objects information at front end. How can I assign different impression to each type of user on those modules?

When you register to site depending on what kind of Joomla level user you are, you could be assigned certain amount of impressions per month.
Does anyone know how to do this?

Or also assign the total amount of impressions per month to each user when registering to site.

Comments and ideas more than welcome

If someone wants to have real access to site you could visit it at www.veracruzinmuebles.com

If anyone can help and play around with project I can give backend access.

Thanks
Ismael
 
Report to moderator   Logged Logged  
  The administrator has disabled public write access.
#4807
admin (Admin)
Admin
Posts: 562
graph
User Offline Click here to see the profile of this user
Gender: Male MisterEstate Location: South Germany
Re:I wish more funtionality for Mister Estate 9 Months, 1 Week ago Karma: 31  
Hi,

you need more functionality in MisterEstate?

As you might know, developing takes a lot of time. The current income through donatios aren´t enough to cover the time I spent with developing and supporting MisterEstate.

So, why don´t you support the development with a donation? It would enable me to continue with development.

Thank you!

btw: please don´t post the same topics twice!<br><br>Post edited by: admin, at: 2007/10/09 11:13
 
Report to moderator   Logged Logged  
 
kindly regards / beste Gruesse

Admin
  The administrator has disabled public write access.
#4814
onejungle (User)
Fresh Boarder
Posts: 2
graphgraph
User Offline Click here to see the profile of this user
Re:I wish more funtionality for Mister Estate 9 Months, 1 Week ago Karma: 0  
I was asking for some advices on how to do some specific changes on my own. I do not want to use your time for coding.

If you allow me I can improve your component functionality for free, for you and for the whole community that use it.

I have some nice coders working with me that will happily help us.

What do you say?
Can you give us some hints?

If you still prefer to do it yourself and do not grant us access to change code, how much would that donation should be?
 
Report to moderator   Logged Logged  
  The administrator has disabled public write access.
#5173
toscar (User)
Fresh Boarder
Posts: 3
graphgraph
User Offline Click here to see the profile of this user
Re:I wish more funtionality for Mister Estate 7 Months ago Karma: 0  
Hi!

I resolved your problem. I use a table (in my case jos_estateagent_users), with data:
Code:

CREATE TABLE `jos_estateagent_users` ( `eusid` int(11) NOT NULL auto_increment, `userid` int(11) NOT NULL, `maxhirdetes` int(11) NOT NULL default '100', `elofizetes_vege` datetime NOT NULL, PRIMARY KEY (`eusid`), KEY `userid` (`userid`) ) ENGINE=MyISAM AUTO_INCREMENT=3 DEFAULT CHARSET=latin2 AUTO_INCREMENT=3;
userid - Joomla userID. maxhirdetes - max count of objects elofizetes_vege - I don't use it, but i would like to use it in the future. I edit this table with phpmyadmin. Here is my mod (part of user.estateagent.php):
Code:

$query = &quot;SELECT count(id) FROM #__estateagent WHERE created_by='$my-&gt;id'&quot;; $database-&gt;setQuery($query); $total = $database-&gt;loadResult(); //új hirdetés ellen&amp;#337;rzése innen $inglimit=&quot;ok&quot;; //ha a hirdetesek száma túllépte a felhasználóknak megengedett hirdetés számot, akkor $limit=&quot;limit&quot; if($task==&quot;new&quot; &amp;&amp; ($ea_maxobjects &gt; 0) &amp;&amp; ($total == $ea_maxobjects)) $inglimit=&quot;limit&quot;; $lim=$inglimit; $maxhirdetes=0; //inicializáló érték, limit esetén felülíródik if($inglimit==&quot;limit&quot;«») //ha már több hirdetés van, mint a megengedett, akkor ellen&amp;#337;rizzük, hogy van -e el&amp;#337;fizetés { $query = &quot;SELECT max(maxhirdetes) FROM #__estateagent_users WHERE userid='$my-&gt;id'&quot;; $database-&gt;setQuery($query); $maxhirdetes = $database-&gt;loadResult(); if (is_null($maxhirdetes)) $maxhirdetes=0; //ha nincs benne az el&amp;#337;fizet&amp;#337;i adatbázisban } if($task==&quot;new&quot; &amp;&amp; ($ea_maxobjects &gt; 0 &amp;&amp; ($maxhirdetes-$total) &gt; 0)) $inglimit=&quot;ok&quot;; if($task==&quot;new&quot; &amp;&amp; ($inglimit==&quot;limit&quot;«»)) { //nem lehet új hirdetést feladni, mert átlépte a limitet $msg = _EA_USR_NONEWOBJECTS; mosRedirect( &quot;index.php?option=com_estateagent&amp;act=eaadmin&quot;, $msg ); }else{ $obj = new EAObject( $database ); if($task == &quot;edit&quot;«») { if($id == 0) $obj-&gt;load($cid[0]); else $obj-&gt;load($id); $action = '&lt;input type=&quot;hidden&quot; name=&quot;id&quot; id=&quot;id&quot; value=&quot;' . $obj-&gt;id .'&quot; /&gt;'; $action .= _EAB_OBJ_EDIT; } else{ $query = &quot;SELECT id FROM #__estateagent ORDER BY id ASC&quot;; $database-&gt;setQuery($query); $result = $database-&gt;loadResultArray(); if(count($result) == 0 || $result == &quot;&quot;«») $obj-&gt;id = 1; else $obj-&gt;id = (end($result) + 1); if($ea_autoindex){ $d = date(GisjmY); $obj-&gt;obj_id = &quot;EA&quot;.$d; }
Best Regards, TOscar www.hingatlan.hu
 
Report to moderator   Logged Logged  
  The administrator has disabled public write access.
#6009
TianjinExpats (User)
Fresh Boarder
Posts: 1
graphgraph
User Offline Click here to see the profile of this user
Re:I wish more funtionality for Mister Estate 3 Weeks ago Karma: 0  
Can you explain how to use your mod? This sounds like precisely what I need, (a real estate component that allows me to assign a maximum number of entries per user).
 
Report to moderator   Logged Logged  
  The administrator has disabled public write access.
Go to top Post Reply
Powered by FireBoardget the latest posts directly to your desktop