CiviCRM Community Forums (archive)

*

News:

Have a question about CiviCRM?
Get it answered quickly at the new
CiviCRM Stack Exchange Q+A site

This forum was archived on 25 November 2017. Learn more.
How to get involved.
What to do if you think you've found a bug.



  • CiviCRM Community Forums (archive) »
  • Old sections (read-only, deprecated) »
  • Support »
  • Using CiviCRM »
  • Using Core CiviCRM Functions (Moderator: Yashodha Chaku) »
  • Relationship start date
Pages: [1]

Author Topic: Relationship start date  (Read 984 times)

ministrycrm

  • Guest
Relationship start date
August 24, 2007, 01:33:22 pm
anybody know how to change the date input field on the add relationship page
it only goes back to 1087
I got the calendar to go back to 1900 but it wont work because the dropdown starts at 1987

Donald Lobo

  • Administrator
  • I’m (like) Lobo ;)
  • *****
  • Posts: 15963
  • Karma: 470
    • CiviCRM site
  • CiviCRM version: 4.2+
  • CMS version: Drupal 7, Joomla 2.5+
  • MySQL version: 5.5.x
  • PHP version: 5.4.x
Re: Relationship start date
August 24, 2007, 04:20:36 pm

You will have to change the code at:

CRM/Contact/Form/Relationship.php, line 217 or so

        $this->addElement('date', 'start_date', ts('Start Date'), CRM_Core_SelectValues::date( 'relative' ) );
        $this->addElement('date', 'end_date'  , ts('End Date')  , CRM_Core_SelectValues::date( 'relative' ) );

to

        $this->addElement('date', 'start_date', ts('Start Date'), CRM_Core_SelectValues::date( 'custom', 80, 20 ) );
        $this->addElement('date', 'end_date'  , ts('End Date') , CRM_Core_SelectValues::date( 'custom', 80, 20 ) );

We hope to make most date ranges configurable in a 2.x release

lobo
A new CiviCRM Q&A resource needs YOUR help to get started. Visit our StackExchange proposed site, sign up and vote on 5 questions

Pages: [1]
  • CiviCRM Community Forums (archive) »
  • Old sections (read-only, deprecated) »
  • Support »
  • Using CiviCRM »
  • Using Core CiviCRM Functions (Moderator: Yashodha Chaku) »
  • Relationship start date

This forum was archived on 2017-11-26.