Pro Drupal Development (eBook)

(Autor)

eBook Download: PDF
2008 | 2nd ed.
704 Seiten
Apress (Verlag)
978-1-4302-0990-4 (ISBN)

Lese- und Medienproben

Pro Drupal Development -  John VanDyk
Systemvoraussetzungen
46,00 inkl. MwSt
  • Download sofort lieferbar
  • Zahlungsarten anzeigen

Widely praised for its in-depth coverage of Drupal internals, bestselling Pro Drupal Development has been updated for Drupal 6 in this edition, and provides are even more tricks of the trade to help you further yourself as a professional Drupal developer.

Assuming you already know how to install and bring a standard installation online, John K. VanDyk gives you everything else you need to customize your Drupal installation however you see fit. Pro Drupal Development, Second Edition delves deep into Drupal internals, showing you how to take full advantage of its powerful architecture.



John K. VanDyk has been a Drupal developer since 2004. In 2005, he organized the first Drupal conference in Antwerp, Belgium, with Drupal founder Dries Buytaert. John has contributed several modules to Drupal including the actions, workflow, publish, subscribe, and pubcookie modules and has been instrumental in the design of Drupal's Content Construction Kit. John's day job is as an entomology professor and systems analyst at Iowa State University, where he teaches undergraduate courses about insects. In his spare time, when not hacking on Drupal, John enjoys squash hunting and raising children.
Less than two years ago, I wrote the foreword for the first edition of this book. What was missing at that time was a developer book for Drupal. By writing the first version of this book, John VanDyk and Matt Westgate made an incredible contribution to Drupal's steady growth. I don't think I know a single Drupal developer who doesn't own a copy of the first Pro Drupal Development book. Drupal, through its open source nature, has become much greater than I ever im- ined it would. The Drupal developer community has a healthy desire to innovate, to respond to the ever-changing landscape of web development, and to provide web dev- opers an almost infinite amount of flexibility. Change is a constant in the Drupal c- munity and key to our success. Since the first edition of this book was published, we released Drupal 6, a big step forward, with new and improved APIs. In fact, Drupal 6 had over 700 individual contri- tors who have patches included in the core code. Together, we've made important theme system improvements, better support for multilingual web sites, an improved menu s- tem, form API improvements, JavaScript goodies, and much more. The net result is that Drupal 6 is an even better web application development platform than Drupal 5. Probably to John and Matt's despair (sorry!), all of the chapters of the original edition of Pro Drupal Development went partially out of date.

John K. VanDyk has been a Drupal developer since 2004. In 2005, he organized the first Drupal conference in Antwerp, Belgium, with Drupal founder Dries Buytaert. John has contributed several modules to Drupal including the actions, workflow, publish, subscribe, and pubcookie modules and has been instrumental in the design of Drupal's Content Construction Kit. John's day job is as an entomology professor and systems analyst at Iowa State University, where he teaches undergraduate courses about insects. In his spare time, when not hacking on Drupal, John enjoys squash hunting and raising children.

Contents at a Glance 5
Contents 7
Foreword 25
About the Author 26
About the Technical Reviewer 27
Acknowledgments 28
Introduction 29
How Drupal Works 30
What Is Drupal? 30
Technology Stack 30
Core 31
Administrative Interface 32
Modules 32
Hooks 33
Themes 34
Nodes 34
Blocks 35
File Layout 35
Serving a Request 37
Summary 40
Writing a Module 41
Creating the Files 41
Implementing a Hook 43
Adding Module- Specific Settings 44
Adding the Data Entry Form 47
Defining Your Own Administration Section 55
Presenting a Settings Form to the User 57
Validating User- Submitted Settings 59
Storing Settings 60
Further Steps 62
Summary 62
Hooks, Actions, and Triggers 63
Understanding Events and Triggers 63
Understanding Actions 65
Using the Context in Actions 75
Examining the Context 79
How Actions Are Stored 80
Calling an Action Directly with actions_ do() 81
Defining Your Own Triggers with hook_ hook_ info() 82
Adding Triggers to Existing Hooks 84
Summary 86
The Menu System 87
Callback Mapping 87
Menu Nesting 97
Access Control 98
Title Localization and Customization 99
Wildcards in Menu Items 103
Altering Menu Items from Other Modules 108
Altering Menu Links from Other Modules 110
Kinds of Menu Items 110
Common Tasks 111
Using menu. module 115
Common Mistakes 115
Summary 116
Working with Databases 117
Defining Database Parameters 117
Understanding the Database Abstraction Layer 117
Connecting to the Database 119
Performing Simple Queries 120
Retrieving Query Results 122
The Schema API 123
Inserts and Updates with drupal_ write_ record() 134
Exposing Queries to Other Modules with hook_ db_ rewrite_ sql() 136
Connecting to Multiple Databases Within Drupal 139
Using a Temporary Table 140
Writing Your Own Database Driver 140
Summary 141
Working with Users 143
The $ user Object 143
Introduction to hook_ user() 146
The User Registration Process 149
The Login Process 152
External Login 157
Summary 164
Working with Nodes 165
So What Exactly Is a Node? 165
Not Everything Is a Node 168
Creating a Node Module 168
How Nodes Are Stored 185
Creating a Node Type with CCK 186
Restricting Access to Nodes 187
Summary 191
The Theme System 192
Theme System Components 192
Installing a Theme 195
Building a PHPTemplate Theme 196
Understanding Template Files 203
Advanced Drupal Theming 221
Summary 228
Working with Blocks 229
What Is a Block? 229
Block Configuration Options 230
Block Placement 232
Defining a Block 232
Building a Block 236
Enabling a Block When a Module Is Installed 244
Block Visibility Examples 244
Summary 245
The Form API 246
Understanding Form Processing 246
Creating Basic Forms 254
Form API Properties 277
Summary 298
Manipulating User Input: The Filter System 299
Filters 299
Filters and Input Formats 300
Creating a Custom Filter 306
Protecting Against Malicious Data 312
Summary 313
Searching and Indexing Content 314
Building a Custom Search Page 314
Using the Search HTML Indexer 322
Summary 331
Working with Files 332
How Drupal Serves Files 332
PHP Settings 334
Media Handling 335
File API 336
Summary 349
Working with Taxonomy 350
What Is Taxonomy? 350
Kinds of Taxonomy 354
Viewing Content by Term 356
Storing Taxonomies 358
Module- Based Vocabularies 360
Common Tasks 363
Taxonomy Functions 365
Additional Resources 371
Summary 371
Caching 372
Knowing When to Cache 372
How Caching Works 373
How Caching Is Used Within Drupal Core 374
Summary 387
Sessions 388
What Are Sessions? 388
Usage 389
Session- Related Settings 390
Storage 392
Session Life Cycle 393
Session Conversations 395
Common Tasks 396
Summary 398
Using jQuery 399
What Is jQuery? 399
The Old Way 400
How jQuery Works 401
jQuery Within Drupal 403
Building a jQuery Voting Widget 415
Next Steps 427
Summary 427
Localization and Translation 428
Enabling the Locale Module 428
User Interface Translation 428
Starting a New Translation 441
Installing a Language Translation 445
Right- to- Left Language Support 447
Language Negotiation 448
Content Translation 453
Localization- and Translation- Related Files 458
Additional Resources 458
Summary 459
XML-RPC 460
What Is XML- RPC? 460
Prerequisites for XML- RPC 460
XML- RPC Clients 461
A Simple XML- RPC Server 466
Built- In XML- RPC Methods 470
Summary 472
Writing Secure Code 473
Handling User Input 473
Handling URLs Securely 480
Making Queries Secure with db_ query() 481
Keeping Private Data Private with db_ rewrite_ sql() 485
Dynamic Queries 486
Permissions and Page Callbacks 487
Cross- Site Request Forgeries ( CSRF) 488
File Security 488
Encoding Mail Headers 491
Protecting cron. php 492
SSL Support 492
Stand- Alone PHP 493
AJAX Security 494
Form API Security 494
Protecting the Superuser Account 495
Using eval() 496
Summary 496
Development Best Practices 497
Coding Standards 497
PHP Comments 503
Checking Your Coding Style Programmatically 507
Finding Your Way Around Code with egrep 508
Taking Advantage of Version Control 510
Creating and Applying Patches 520
Maintaining a Module 521
Mixing SVN with CVS for Project Management 538
Testing and Developing Code 539
The Module Builder Module 542
Application Profiling and Debugging 542
Summary 544
Optimizing Drupal 546
Finding the Bottleneck 546
Drupal- Specific Optimizations 555
Architectures 561
Summary 564
Installation Profiles 565
Where Profiles Are Stored 565
How Installation Profiles Work 566
Summary 589
Database Table Reference 590
access ( user module) 590
accesslog ( statistics module) 590
actions ( trigger module) 591
actions_ aid ( trigger module) 591
aggregator_ category ( aggregator module) 592
aggregator_ category_ feed ( aggregator module) 592
aggregator_ category_ item ( aggregator module) 592
aggregator_ feed ( aggregator module) 592
aggregator_ item ( aggregator module) 593
authmap ( user module) 593
batch ( batch. inc) 594
blocks ( block module) 594
blocks_ roles ( block module) 595
book ( book module) 595
boxes ( block module) 596
cache 596
cache_ block ( block module) 596
cache_ filter ( filter module) 597
cache_ form 597
cache_ menu 598
cache_ page 598
cache_ update 599
comments ( comment module) 599
contact ( contact module) 600
files ( upload module) 600
filter_ formats ( filter module) 601
filters ( filter module) 601
flood ( contact module) 601
forum ( forum module) 602
history ( node module) 602
languages ( locale module) 602
locales_ source ( locale module) 603
locales_ target ( locale module) 603
menu_ custom ( menu module) 603
menu_ links ( menu module) 604
menu_ router 605
node ( node module) 606
node_ access ( node module) 607
node_ comment_ statistics ( comment module) 608
node_ counter ( statistics module) 608
node_ revisions ( node module) 608
node_ type ( node module) 609
openid_ association ( openid module) 610
permission ( user module) 610
poll ( poll module) 611
poll_ choices ( poll module) 611
poll_ votes ( poll module) 611
profile_ fields ( profile module) 612
profile_ values ( profile module) 612
role ( user module) 613
search_ dataset ( search module) 613
search_ index ( search module) 613
search_ node_ links ( search module) 614
search_ total ( search module) 614
sessions 614
system 615
term_ data ( taxonomy module) 616
term_ hierarchy ( taxonomy module) 616
term_ node ( taxonomy module) 616
term_ relation ( taxonomy module) 616
term_ synonym ( taxonomy module) 617
trigger_ assignments ( trigger module) 617
upload ( upload module) 617
url_ alias ( path module) 618
users ( user module) 618
users_ roles ( users) 619
variable 619
vocabulary ( taxonomy module) 620
vocabulary_ node_ types ( taxonomy module) 620
watchdog ( dblog module) 621
Resources 622
Code 622
Handbooks 623
Forums 623
Mailing Lists 623
User Groups and Interest Groups 625
Internet Relay Chat 625
Videocasts 626
Weblogs 626
Conferences 626
Contribute 627
Index 628

Erscheint lt. Verlag 24.9.2008
Zusatzinfo 704 p.
Verlagsort Berkeley
Sprache englisch
Themenwelt Mathematik / Informatik Informatik Software Entwicklung
Informatik Web / Internet Content Management Systeme
Schlagworte Blog • Databases • Development • Drupal • Open Source • structured analysis
ISBN-10 1-4302-0990-9 / 1430209909
ISBN-13 978-1-4302-0990-4 / 9781430209904
Haben Sie eine Frage zum Produkt?
PDFPDF (Wasserzeichen)
Größe: 8,4 MB

DRM: Digitales Wasserzeichen
Dieses eBook enthält ein digitales Wasser­zeichen und ist damit für Sie persona­lisiert. Bei einer missbräuch­lichen Weiter­gabe des eBooks an Dritte ist eine Rück­ver­folgung an die Quelle möglich.

Dateiformat: PDF (Portable Document Format)
Mit einem festen Seiten­layout eignet sich die PDF besonders für Fach­bücher mit Spalten, Tabellen und Abbild­ungen. Eine PDF kann auf fast allen Geräten ange­zeigt werden, ist aber für kleine Displays (Smart­phone, eReader) nur einge­schränkt geeignet.

Systemvoraussetzungen:
PC/Mac: Mit einem PC oder Mac können Sie dieses eBook lesen. Sie benötigen dafür einen PDF-Viewer - z.B. den Adobe Reader oder Adobe Digital Editions.
eReader: Dieses eBook kann mit (fast) allen eBook-Readern gelesen werden. Mit dem amazon-Kindle ist es aber nicht kompatibel.
Smartphone/Tablet: Egal ob Apple oder Android, dieses eBook können Sie lesen. Sie benötigen dafür einen PDF-Viewer - z.B. die kostenlose Adobe Digital Editions-App.

Zusätzliches Feature: Online Lesen
Dieses eBook können Sie zusätzlich zum Download auch online im Webbrowser lesen.

Buying eBooks from abroad
For tax law reasons we can sell eBooks just within Germany and Switzerland. Regrettably we cannot fulfill eBook-orders from other countries.

Mehr entdecken
aus dem Bereich