I've retrieved income statement data (total revenue, gross profit, operating income, & net income figures) for over 3000 NYSE stocks taken from the cnn, msn, quote, and yahoo finance websites.
Google finance data was not included because the financials are not available via the url.
You can view the results by clicking "Stock" > "Income statements table" in the "Navigation" block.
I'm having problems displaying 1 particular image. If i am creating or editing the page the image is there, but when the page is viewed normally, the image fails to load.
I try to perform a theming form tutorial from this site http://chepri.com/2011/03/14/underwater-talks-theming-node-forms-in-drup... in #states_example form from form_example module and it does not work, in google I find some tutorials and does not work too...
I perform step by step as the tutorials do... the form work but the theme don't
Can someone help me to find a good tutorial for theming form using template file ??
/**
* @file
* An example of how to use the new #states Form API element, allowing
* dynamic form behavior with very simple setup.
*/
/**
* Assign the elements of the form to variables so
* the themer can use those values to control how the
* form elements are displayed, or alternatively
* displaying the whole form as constructed above.
*/
function template_preprocess_formexample_nameform(&$variables) {
$variables['formexample_nameform'] = array();
$hidden = array();
// Provide variables named after form keys so themers can print each element
foreach (element_children($variables['form']) as $key) {
$type = $variables['form'][$key]['#type'];
if ($type == 'hidden' || $type == 'token') {
$hidden[] = drupal_render($variables['form'][$key]);
}
else {
I started playing with Drupal 7. Works fine but now I can't start any Drupal6 site..doing so causes Apache to crash (Virtual Host overlap :80). How can I run both on the same machine? I found some hints about tweaking the httpd.conf but can't get it to work.
Hey everyone. I have a basic question but I have searched and I can't seem to find an answer for. I want to temporarily shut off my drupal site from the public. Is there a certain function I can use or a module?? Or what do I have to do to accomplish this?