Drupal Theme Contest

The huge success of the theme contest over at Joomla has spurred many new comers to Joomla and created competition amongst the usual "Paid" Theme sites and developer because the new Themes (templates) are very solid and well tested.

Drupal needs something like this. !!

Winner will get a default install into the Drupal distributed files with full credit.

Who can start something like this ?

Would there be interest ?

I know I would have an entry ...

Drupal 6 dreamweaver extension

hi,
Though I have not named the project, I have been working on a dreamweaver extension for drupal templates. Now it is in final test stage. It will be availabe for download very soon.

Features include
* a none-programmer can do everything in drupal themeng
* creating basic files with a single click.
* adding Regions in few clicks
* graphic view
* migrate between versions
* Deleting unnecessary files

A beta release is expected soon

Views and coments are welcome

Pictures/gallery in drupal

Hi!

I want to make a gallery kind of thing like this "Featured work 2007" (http://www.opendesigns.org/preview/?template=1047) in the original Ad Agency theme. Can someone explain how this can be done, or point me to where I can find out?

Thanks!

-Pusle-

Importing excel data to put into the database and be able to put on the web site

I have a raw data in excel, can I import that data into the database and create a web site using Drupal and
put all the queries on that page to get the data on the database?

Hook not being called?

I'm building an AJAX translation module which will improve the ease of online translating compared to the locale and other existing modules. I'm fairly new to drupal development and ran into a problem already. The install() hook does not seem to be called when installing the module. This is the code in the translator.install file so far:


<?php
// $Id: translator.install

/**
* Implementation of hook_install().
*/
function translator_install() {
echo "translator_install()";
drupal_install_schema('translator');
}

/**
* Implementation of hook_uninstall().
*/
function translator_uninstall() {
db_query('ALTER TABLE locales_source DROP comments;');
db_query('ALTER TABLE locales_target DROP fuzzy;');
}

/**
* Implementation of hook_schema().
*/
function translator_schema() {
echo "translator_schema()";

// Our schema will be based on that of the locale module
$schema = locale_schema();

$schema['fields']['locales_source']['comments'] = array(
'type' => 'varchar',
'length' => 255,
'not null' => TRUE,
'default' => '',
'description' => t('Comments are only visible to translators. It can be used to specify a context or interpretation which might be useful when translating.'),
);
$schema['fields']['locales_target']['fuzzy'] = array(
'type' => 'int:tiny',

PHPMyAdmin export via PHP ?

Does anyone have experience executing phpmyadmin and taking advantage of its export capabilities? even as to provide a simple interface to a client rather than have them go through the phpmyadmin UI ?

Thanks!

Pages

Subscribe with RSS Subscribe to RSS - Drupal 6.x