This forum is for less technical discussions about the Drupal project, not for support questions.

Access control heirachy, plone or drupal?

Im wondering if the following kind of access control system is possible in drupal, the existing access-control is fairly linear, can anyone shed some light? heres some requirements.. it's probably more for a corporate environment/intranet..

The hierachy is faily straight forward, I think....

Given a site:

Root/
|
+--/BU1
: |
: +-Page1
: +-Page2
:
+--/BU2
: |
: +-Page3
: +-*Page4*
:
+--/CORP
|
|--/HR
: +-HRPage
+-Page5

BU = Business Unit. Each BU has it's own heirachy inside the site, with
a shared "CORP" hierachy for global resources (phonelists, HR docs etc).
Each employee is actually employed by one of the BU's or directly by
corporate - this defines their group membership.

Site access requires a single sign on (ldap backend to corporate
metaverse directory).

Access Rules
------------
* All authenticated users should see all approved pages, unless those
pages are specifically restricted.
* All members of a BU should be able to add draft content to that's BU's
tree, but not to others.
* Business unit managers should be able to aprove content within their
BU tree, but not others.
* Permissions should be inheritable, except where revoked ie, specific
restrictions, like:
a) *Page4* is only viable to BU2 members,
b) HRPage can be edited by HR group (a subset of corporate)

Need module for contact listing

Hey all,

I'm in the process of planning out a new drupal site, and I'm trying to determine if there is a module that will do the following.

Background

We have an Ally Training program, where faculty/staff/students are trained to become Allies. These people are then listed on our site as a resource for other staff/faculty/students to contact. Currently, there are 438 allies, and all their information is listed in one long HTML file.

Looking for ...

Tips : Auto Keyword

This is if you want your meta keyword (and description) always change in every page
i use it on my site FreewareList.net

1. create php fle with name keyword.php

<?php
//to find the number of words so as to prevent the repetition of keywords

$delim = " ";
$string = "$head_title";
$words = count(explode($delim, $string));
//splits the title in to pieces
$pieces = explode(" ", $head_title);
for ( $counter = 0; $counter < $words; $counter += 1) {
// piece1 and comma

$badw=badwords("$pieces[$counter]"); 
echo $badw;echo ",";
}
?> 

2. create php file with name filter.php
it's up to you ti select wich word that you want to block
for my site , i create like this:

<?

function badwords($string)
{
$replace = array();
$with = array();

$replace[] = "|";
$with[] = "files";

$replace[] = "and";
$with[] = "software";

$replace[] = "&";
$with[] = "games";

$replace[] = "Beta";
$with[] = "full";

$replace[] = "RC";
$with[] = "ready";

$replace[] = "Alpha";
$with[] = "full";

$replace[] = "List";
$with[] = "programs";

$replace[] = "Freeware";
$with[] = "freeware";

$replace[] = "Fresh";
$with[] = "microsoft";

$replace[] = "-";
$with[] = "utilities";

$replace[] = "Update";
$with[] = "update";

$replace[] = "Daily";
$with[] = "daily";

$replace[] = "Collection";

A download box like drupal.org

Hi!

New to drupal, working on my first site. I really like the three colored boxes up at the top of the drupal.org homepage, especially the download box. I've looked through the module listing and I didn't find anything that applied, can anyone point me in the right direction?

Thanks a lot!

Brian

Themes for community sites

Hello,

tinymce formatting question

Juding by the amount of posts on this subject (or a similar one) I'm kind of suprised I couldn't find one that matches up exactly with my problem, unless I missed it completely (which has been known to happen).

Pages

Subscribe with RSS Subscribe to RSS - General discussion