Hi Cais,
for sure, not yet exhaustive, see below for file display_tab_js.php (other files after)
line 969: this.$el.append('<strong>Exclude:</strong>');
line 972: text: 'All',
line 979: text: 'None',
line 1033: title: 'Ascending',
line 1038: title: 'Descending',
line 1069: this.sortorder_options.push(this.create_sortorder_option('', 'None'));
this.sortorder_options.push(this.create_sortorder_option('sortorder', 'Custom'));
this.sortorder_options.push(this.create_sortorder_option(Ngg.DisplayTab.instance.image_key, 'Image ID'));
this.sortorder_options.push(this.create_sortorder_option('filename', 'Filename'));
this.sortorder_options.push(this.create_sortorder_option('alttext', 'Alt/Title Text'));
this.sortorder_options.push(this.create_sortorder_option('imagedate', 'Date/Time'));
line 1140: this.$el.append('<strong>Sort By:</strong>');
line 1148: this.$el.append('<strong style="margin-left: 30px;">Order By:</strong>');
line 1235: exclude_container.append('Exclude?');
line 1330: render: function(){
var tag_select = new Ngg.Views.Chosen({
collection: this.tags,
multiple: true,
==> placeholder: 'Select a tag',
text_field: 'name',
width: 500
});
line 1395: this.$el.append('<tr><td><label># of Images To Display</label></td><td class="random_images_column"></td></tr>');
modules\nextgen_basic_gallery\adapter.nextgen_basic_slideshow_form.php
line 71:
function _render_nextgen_basic_slideshow_cycle_effect_field($display_type)
{
return $this->_render_select_field(
$display_type,
'cycle_effect',
==> 'Effect',
array(
==> 'fade' => 'fade',
==> 'blindX' => 'blindX',
==> 'cover' => 'cover',
==> 'scrollUp' => 'scrollUp',
==> 'scrollDown' => 'scrollDown',
==> 'shuffle' => 'shuffle',
==> 'toss' => 'toss',
==> 'wipe' => 'wipe'
),
$display_type->settings['cycle_effect'],
'',
FALSE
);
}
modules\nextgen_gallery_display\class.gallery_display_installer.php”(96,17):
Line 75:
function install($reset=FALSE)
{
$this->install_displayed_gallery_source('galleries', array(
==> 'title' => 'Galleries',
'returns' => array('image'),
'aliases' => array('gallery', 'images', 'image')
));
$this->install_displayed_gallery_source('albums', array(
==> 'title' => 'Albums',
'returns' => array('gallery', 'album'),
'aliases' => array('album')
));
$this->install_displayed_gallery_source('tags', array(
==> 'title' => 'Tags',
'returns' => array('image'),
'aliases' => array('tag', 'image_tag', 'image_tags')
));
$this->install_displayed_gallery_source('random_images', array(
==> 'title' => 'Random Images',
'returns' => array('image'),
'aliases' => array('random', 'random_image'),
'has_variations' => TRUE
));
$this->install_displayed_gallery_source('recent_images', array(
==> 'title' => 'Recent images',
'returns' => array('image'),
'aliases' => array('recent', 'recent_image')
));
}