user relationships cms php

Post on 05-Dec-2014

1.241 Views

Category:

Technology

3 Downloads

Preview:

Click to see full reader

DESCRIPTION

Create relationships between users in ProdigyView. Can be used for developing social networking websites.

TRANSCRIPT

User Relationships

www.prodigyview.com

Overview

Objective

Learn to create relationships between users, similar to social networking sites.

Requirements

Install version of ProdigyView with a database connection

Understanding of how to create a user

Estimated Time

10 Minuteswww.prodigyview.com

Follow Along With Code Example

1. Download a copy of the example code at www.prodigyview.com/source.

2.Install the system in an environment you feel comfortable testing in.

3.Proceed to examples/user/UsersRelationships.php

Having A Relationship

Having a relationship is nothing easy. It takes time, commitment, lot of moneys and sometimes lots of chocolate to feel loved if you are being neglected.

Thankfully in ProdigyView all you need to have is more than one user and you can define a relationship between them. We will be covering in tutorial:

Creating a relationship

Checking if a relationship exist

Modifying a relationship

Deleting a relationship(breaking up)www.prodigyview.com

Add Some UsersOur example starts by first creating some users. If you are following along in the code example, there are two more users created besides the two below.

Creating A RelationshipNow that we have our users present in the database, we can start creating relationships. It takes two to make this thing go right, so we at least require two users, a relationship type, and relationship status.

1. Add the first user 2. Add the second user

3. Set the relationship type4. Add the relationship status. Meaning of numbers is set by you. Example '1 could be ‘accepted’ and 0 mean ‘pending’.

Database ViewYour database should look something like after adding the users.

www.prodigyview.com

Searching RelationshipsNext we can search through our relationship using getUserRelationshipList() method. The method uses PV Standard Search arguments when querying for matches.

1. Search for users based on the requesting users field

2. The ‘,’ symbolizes an OR used in SQL

3. Returns the relationships as an array of arrays

Compare RelationshipsSince we are pulling out our users, lets do some comparisons using the checkUserRelationship(). This method checks if there is an relationship among users. Explanation on next slide.

www.prodigyview.com

Comparison Explanation1. Iterate through the relationships

2. Get the users information based on their user_id in the relationship

3. Print out the found relationship type 4. Check is there is any relationship based on the two users ids

5. Results on next slide

The Comparison ResultsIf they are suppose be a family, something is definitely off.

Removing A RelationshipObviously the relationships were not quite working out so it’s time for everyone to go there separate ways. I guess that means it’s time to delete some relationships.

Delete the relationship by passing in the relationship id

www.prodigyview.com

Review

1. Add a relationship PVUsers::addUserRelationship()

2. Check if a relationship exist by using PVUsers::checkUserRelationship().

3. Search for user relationships with PVUsers::getUserRelationshipList()

4. Delete a user relationship with PVUsers::deleteUserRelationship()

www.prodigyview.com

API ReferenceFor a better understanding of the users, visit the api by clicking on the link below.

PVUsers

www.prodigyview.com

More Tutorials

For more tutorials, please visit:

http://www.prodigyview.com/tutorials

top related