0
votes
1answer
276 views
Drupal Module Development hook_menu() For Semi Static Pages
I have a page that is definitely not a form but I need to use some callback functions to load data from an external source and display (e.g. a list of buildings on campus and their accessibility in …
1
vote
2answers
563 views
Drupal Module Add Menu Item To Primary Links?
Is it possible to add a menu item from within hook_menu() directly to the primary-links menu instead of navigation where they like to reside by default?
…
4
votes
Role Based Access Control in PHP
Brandon Savage gave a presentation on his PHP package "ApplicationACL" that may or may not accomplish role-based access. …
3
votes
PHP performance considerations?
Sounds like you are participating in a bit of premature optimization. If the application is not built, while performance concerns are good to be aware of, your primary concern should be getting the …
0
votes
What would you say, is the best online-source for PHP-related things?
PHPDeveloper, maintained by the infamous Chris "enygma" Cornutt, is a great place to get information about what's going on in the PHP world …
0
votes
Running xinc on OpenBSD’s Apache Server
Have you posted the issue on the Xinc bug tracker? Xinc itself should run fine as it runs both as a daemon and as a web app. A …
0
votes
Don’t wait for the process to exit
http://php.net/pcntl_fork
It's *NIX only but you can fork your script using the PCNTL extension.
…
0
votes
Would performance suffer using autoload in php and searching for the class file?
Zend Framework's approach is to do autoload based on the PEAR folder standard (Class_Foo maps to /Class/Foo.php), however rather than using a set base path it uses the include_path.
The pro …
1
vote
“Inline” Class Instantiation in PHP? (For Ease of Method Chaining)
The only way you can get something similar is with a factory or singleton static method. For example:
class User
{
//...
/**
*
* @return User
*/
public st …
1
vote
As a web designer/web developer, conferences… which ones do you suggest?
For PHP specific conferences: I went to ZendCon 08 this year and had a freaking blast. Got to meet all the influential badasses in the PHP world …
1
vote
Open Source Virgin - What steps to take?
The only suggestion I can think of is keep your OSS license as open as you can. I know I personally try to avoid GPL licensed software due to the extreme Copy Left restrictions it has (anything I i …
2
votes
How to perform seam carving on an image using PHP’s GD library?
While you could implement this using GD, you're best bet if you can control the server environment is to create an external script/program to carve an image. PHP is going to be a huge bottleneck do …
1
vote
Best XML Parser for PHP
It depends on what you are trying to do with the XML files. If you are just trying to read the XML file (like a configuration file), The Wicked Flea is correct in suggesting SimpleXML since it crea …
1
vote
Converting a sed string to PHP
Your specific SED example is obviously 2 regular expressions, 1 being replacing the commas, and one being technically grabbing the 9 digit continuous numbers.
The first half of your SED str …
4
votes
What is the easiest to use ORM framework for PHP?
I'm a big fan of Doctrine which is a full featured ORM that will be replacing Propel as Symfony's default ORM.
It's got your ba …
