I want to do something with drupal 6. Here the project
Each teacher manages a class composed of several groups. Teachers only have access to their own groups. By connecting each teacher is directed to a page (or dashboard homebox) containing: its student groups with each group their latest posts, a link to their blogs (blog group), a place to send (create) a post (blog entry) to all groups or a specific group. Each group of students connect with the user name and password of the administrator of the group (one group member has the right to connect) and are directed to a page that contains: All posts sent by the group, members of the group, a place to send (create) a post (blog entry) only to the teacher, and a page explaining the course.
How much do I create roles (teachers and students only?)
which modules should I use? og, og_menu, og-audience ... or I have seen recement school administration Drupal 7 is ok?
i think its better to use moodle .. its greet in this task...
then you can integrate it with drupal... there is alot of module that support this integration ...
and i think QUIZ module for drupal is very helpful for you
UPDATE:
Drupal 6 have a set of modules that help you integrating your moodle with drupal
but unfortunately DRUPAL 7 still not supported
goodluck
Related
I have to develop an eCommerce website following DDD.
I just completed Ardalis and Julie DDD pluralsight course and need to come up with bounded-context for this project.
Can you please assist if I properly identify bounded contexts for this project?
The requirement is as follow :
The system has 3 types of users : Admin, Manager, and Customer
The system needs to record products, then will display them on online listing,
customer users needs to be able to log invoice which must contain : products added to the invoice + the total
Manager user must be able to edit all invoice.
System must have report on all product sold, in-stock, total products
System must have notification sent to managers only about products that need to be replenished.
I'm thinking of creating 3 bounded context as follow :
Product Management (record, list, invoicing)
For me, Invoice should be a value-object as it doesn't make sense alone, it has always to be associated with customer user.
Report Management
User Management (Admin, Manager, Customer)
Regarding notification, I'm gonna just use Domain Event, no need for a specific bounded-context for it.
Does anyone know where I can get some high quality step by step info on creating a full shopping cart for an asp.net mvc 5 ecommerce application? I have seen examples out there but none of them talk about how to add working payment methods and creating a secure checkout. I want to build something like shopify checkout that is secure and simple. I just keep finding examples on everything BEFORE you reach checkout, like sessions and user adding to cart and seeing the view cart etc...
I have read the book Professional ASP.NET MVC 5 by Jon Galloway where he has the example of the MVC Music store, but nothing about how to actually process payments and all that. I know checkout has to also meet a bunch of requirements required by the processor and the gateway (don't wanna get hacked and sued or anything).. How do I even start / approach a project like this?
Can someone help push me in the right direction?
Keep in mind That iam still Newbie :)
Most of the Payment Gateway Providers are similar, in term of Payment Integration. But some might request extra/other information.
Example of Asp.net 5 + Stripe GateWay:
https://www.youtube.com/watch?v=YMWWeAkAviA&ab_channel=KaushikRoyChowdhury
I came across a question on Stackoverflow regarding payments, it's suggetst that as an "website owner" not to keep/store credit card information, instead let the Gateway Payment handle the information.
Link to the topic:
Storing Credit Card Information
I have the following problem and am looking for possible solutions and/or suggestions on how to solve this.
Let's say I have a domain and I'd like a user to register on it first.If registered, & paid e.g., allow the user to create his own 'page' (once). - my.domain.com/user-1-pagename - my.domain.com/user-2-pagename
What would be the most reliable and secure way to do this?
As you would have to give a user write-access
- Let user create a subfolder under the root of the website(?) & How (security-wise)
- Easier with a Wordpress or Drupal setup to start from?
- ...
Thanks in advance!
It totally depends on what they would want to do with that page afterwards, if you are thinking of creating blog pages for different users then you have these options on WordPress, I'm sure there are tons of other options for many platforms out there:
https://wordpress.org/plugins/profilegrid-user-profiles-groups-and-communities/
https://wordpress.org/plugins/ultimate-member/
But if you are thinking of creating real low level sub-folders for your domain, it would need a lot more information about your host and it may need custom coding.
It could be achieved by OG Group module that will allow register and paid user to create OG NODE and path of the OG NODE at per your requirement (my.domain.com/user-1-pagename) using URL alias Path Auto module
I need to create a mobile application where users can book a Room and send Calendar invite to selected users.
I want to create an interface where users will:
Select a Site
Select a Date and Time
Find Available Rooms
Choose a Room
Select attendees
Create Room Reservation and Calendar Invite
Can somebody point me in the right direction?
I found this link, but, I'm still confused on how to get started with Rooms and Calendar API.
Any help will be highly appreciated.
ENVIRONMENT:
I'm running 9.0.1 with embedded Extension Library; I'm not using a version from openNTF
There are a number of steps you have to do to get there. The calendar API currently (to my best knowledge) doesn't expose rooms and resources. So you have to find them yourself. Steps:
Loop through the ($Rooms) view in names.nsf to get a list of available rooms
Get the server name, the NSF name, so together with "($Reservations)" you can construct the view name where all reservations are for that room
Keep the room name, capacity and the site, so you can show them in your UI
The Freetime lookup is not exposed in the API, nor is the find rooms. There's a freetime lookup service you can use
Iterate through the rooms on the site to see what's free (of course you can disect the mail template)
Then you can create an entry using the Calendar API. Yes it is messy
i have been asked to make a marketing site.The concept provided is as follows-
There will be a parent site named www.game.com.It will have an admin.My client will create www.baseball.com,www.football.com,www.golf.com and so on.All these websites will have their own admin.
Now suppose a golf player named Jack comes to www.game.com admin and asks him to register himself.
My client is saying that www.game.com admin will be able to register that player under www.golf.com because he is a golf player and Jack will get a subdomain like www.golf.com/Jack
www.game.com/admin
www.baseball.com/admin www.football.com/admin www.golf.com/admin
How is it possible ? how should i approach?
What you are looking at doing is called URL rewriting. Check out this article for the basics of how it works.
http://en.wikipedia.org/wiki/Rewrite_engine
You will also find links to various methods for specific languages and platforms.