mourningdove/cgi-bin/LJ/Setting/FindByEmail.pm
2026-05-24 01:03:05 +00:00

114 lines
3.4 KiB
Perl

# This code was forked from the LiveJournal project owned and operated
# by Live Journal, Inc. The code has been modified and expanded by
# Dreamwidth Studios, LLC. These files were originally licensed under
# the terms of the license supplied by Live Journal, Inc, which can
# currently be found at:
#
# http://code.livejournal.org/trac/livejournal/browser/trunk/LICENSE-LiveJournal.txt
#
# In accordance with the original license, this code and all its
# modifications are provided under the GNU General Public License.
# A copy of that license can be found in the LICENSE file included as
# part of this distribution.
package LJ::Setting::FindByEmail;
use base 'LJ::Setting';
use strict;
use warnings;
sub helpurl {
my ( $class, $u ) = @_;
return "find_by_email";
}
*option = \&as_html;
sub as_html {
my ( $class, $u, $errs, $args ) = @_;
my $key = $class->pkgkey;
my $ret;
my $helper = ( $args && $args->{helper} == 0 ) ? 0 : 1;
my $faq = ( $args && $args->{faq} == 1 ) ? 1 : 0;
$ret .=
"<label for='${key}opt_findbyemail'>"
. $class->ml( 'settings.findbyemail.question', { sitename => $LJ::SITENAMESHORT } )
. "</label>"
unless $args && $args->{minimal_display};
# Display learn more link?
$ret .=
" (<a href='"
. $LJ::HELPURL{ $class->helpurl($u) } . "'>"
. $class->ml('settings.settingprod.learn')
. "</a>)<br />"
if ( $faq && $LJ::HELPURL{ $class->helpurl($u) } );
$ret .= "<br />" unless $args && $args->{minimal_display};
my @options;
push @options, { text => $class->ml('settings.option.select'), value => '' }
unless $u->opt_findbyemail;
push @options, { text => LJ::Lang::ml('settings.findbyemail.opt.Y'), value => "Y" };
push @options, { text => LJ::Lang::ml('settings.findbyemail.opt.H'), value => "H" };
push @options, { text => LJ::Lang::ml('settings.findbyemail.opt.N'), value => "N" };
$ret .= LJ::html_select(
{
'name' => "${key}opt_findbyemail",
'id' => "${key}opt_findbyemail",
'class' => "select",
'selected' => $u->opt_findbyemail || ''
},
@options
);
# Display helper text about setting?
$ret .= "<div class='helper'>"
. $class->ml(
'settings.findbyemail.helper',
{
sitename => $LJ::SITENAMESHORT,
siteabbrev => $LJ::SITENAMEABBREV
}
)
. "</div>"
if $helper;
$ret .= $class->errdiv( $errs, "opt_findbyemail" );
return $ret;
}
sub error_check {
my ( $class, $u, $args ) = @_;
my $opt_findbyemail = $class->get_arg( $args, "opt_findbyemail" );
$class->errors( "opt_findbyemail" => $class->ml('settings.findbyemail.error.invalid') )
unless $opt_findbyemail =~ /^[NHY]$/;
return 1;
}
sub save {
my ( $class, $u, $args ) = @_;
$class->error_check( $u, $args );
my $opt_findbyemail = $class->get_arg( $args, "opt_findbyemail" );
return $u->set_prop( 'opt_findbyemail', $opt_findbyemail );
}
sub label {
my $class = shift;
$class->ml('settings.findbyemail.label');
}
# return key value pairs for field names and values chosen
sub settings {
my ( $class, $args ) = @_;
my @list;
push @list, "opt_findbyemail";
push @list, $class->get_arg( $args, "opt_findbyemail" ) || '';
return @list;
}
1;