Questions tagged [drupal-modules]

Drupal modules are add-ons for Drupal that allow you to extend, and customize Drupal functionality. Use this tag is for questions about available modules hosted on www.Drupal.org.

Examples of Drupal modules are Views, Token, CCK, and Pathauto.

The Project Usage Overview contains a complete list of all available modules for Drupal. This includes a ranking about the number of reported installs for each module.

Get access to all sorts of resources for any Drupal module via drupal.org.

2207 questions
0
votes
1 answer

the Rearrange fields and groups option disappreace from content type management section

i know it is not a program related issue but let me ask it here. i don't know what does happen to 'Rearrange fields and groups' in content type management. when i click on manage fields link to rearrange fields i don't see that X anchor. instead i…
hd.
  • 17,596
  • 46
  • 115
  • 165
0
votes
1 answer

Drupal 8 Multi step Login Form

I need to make the login page as below in Drupal 8. http://i84.servimg.com/u/f84/18/45/41/65/login_10.gif Kindly let me know is there any module existing for this or how I can approach this? Thanks in advance.
Tharick
  • 81
  • 7
0
votes
2 answers

drupal views---how to output it

the print_r($a)'s result is views_handle_field_node Object ( [view]=>view Object ( [db_table] => views_view [base_table] => node [args] => Array ( [0] => My entry 1 ) [use_ajax] => [result] => Array ( …
enjoylife
  • 5,015
  • 7
  • 29
  • 33
0
votes
2 answers

How do I display PDF files with Drupal

I am new to Drupal. Which module do I use to display forms saved as PDF files so that they look like this: http://www.cra-arc.gc.ca/E/pbg/tf/t3ret/t3ret-10e.pdf
user530482
  • 1
  • 1
  • 1
0
votes
1 answer

Drupal Module Permission

I have followed the static permission for my module in drupal 8 and adding csv_custom test_permission: title: 'CSV_Custom' description: 'CSV_Custom The description' in my permissions.yml (tried to add restrict access: TRUE and False) and…
0
votes
1 answer

Drupal 8 migrate plugin - explanation needed

I want to migrate data from custom table to book content type, however I have no idea how to achieve that. This is my config\install\migrate.migration.book_content.yml file: id: book_content label: Book content migration_group: example source: …
rukya
  • 678
  • 4
  • 21
0
votes
1 answer

Drupal 7 Persmission per custom field

Lets say I have content types of Department and Proposal. A Proposal is submitted from each Department users. There is also User(built-in Drupal user entity) with Super Admin and Authors(Roles). Department: Id, Name Proposal: Name, file,…
Beakal
  • 134
  • 1
  • 4
  • 15
0
votes
1 answer

Why isn't the body of my message being sent in drupal_mail()?

I'm very new drupal forms but have managed to set up a drupal_mail function that upon submit sends an email to the desired location with the correct $subject message and $from email address. It is not, however, sending the body of the message. I've…
AFarkas
  • 37
  • 2
  • 9
0
votes
0 answers

How do I add a new country to the default locales list in Drupal 8?

I added a country field to one of my content types with the "Country" module, which works like a charm. Now I would like to add countries like "Rest of the World" or "England" or "Scotland". Any idea how one can alter the default country list of…
Lehel Medves
  • 527
  • 1
  • 5
  • 15
0
votes
1 answer

how to fetch database table using drupal custom module

I tried to develop a custom module, which having two date pop-up "start_date" and "end_date",i have database table which contain Id,name,paid date,paid amount .i need to fetch database and display as table on button click.i wrote some code in drupal…
vijoy
  • 21
  • 2
  • 8
0
votes
1 answer

Drupal 7 Single Sign On Issue

** Single Sign On Issue in Drupal 7** Can Drupal 7 experts guide me to fix the single sign on issuse with drupal 7 site We're building a portal www.rithanya.com which will bring multiple sub domains…
Rithanya
  • 1
  • 1
0
votes
1 answer

Taxonomy access control (TAC) for SAAS based solution in Drupal

My use case scenario is as follows. I have a taxonomy vocabulary called "Company" with unique terms "Company 1", Company 2" and so on. Each node in my setup has a term reference for this as mandatory. Similarly, every user is associated with one…
0
votes
2 answers

Can anyone point me to a reference for the Drupal $account->content array?

I've been digging around all morning and I can't find any reference that defines the account object. In particular, I want to modify another drupal admin's user hook() function to change the way it works. Currently, it comes out as dt/dd pairs…
Mike Heinz
  • 1,787
  • 1
  • 17
  • 23
0
votes
2 answers

Hierarchical select module issue in drupal

i am using 'Hierarchical select' module in Drupal to create 2 drop down of States and cities and connecting the city ones to state in a way by changing the state,the list of cities changes too.(it is beside of CCK and taxonomy content module) The…
hd.
  • 17,596
  • 46
  • 115
  • 165
0
votes
1 answer

Drupal - custom module - Generate dynamic URL alias

I have a custom drupal module. I have a demo pages for different APIs I have. (Like, host.com/demo/abc or host.com/demo/bcd or host.com/demo/def ...) hook_menu() $items['demo/%'] = array( 'page callback' => 'xxx', 'page arguments' =>…