<?xml version="1.0" encoding="utf-8"?>
<project version="2.0.0a8" title="Media Library Assistant">
  <file path="includes\class-mla-data.php" hash="3e6a9d2a19b4154e620579eb5476670c" package="Media Library Assistant">
    <docblock line="2">
      <description><![CDATA[Database and template file access for MLA needs]]></description>
      <long-description><![CDATA[]]></long-description>
      <tag line="2" name="package" description="Media Library Assistant"/>
      <tag line="2" name="since" description="0.1"/>
    </docblock>
    <class final="false" abstract="false" namespace="global" line="18" package="Media Library Assistant">
      <extends/>
      <name>MLAData</name>
      <full_name>\MLAData</full_name>
      <docblock line="9">
        <description><![CDATA[Class MLA (Media Library Assistant) Data provides database and template file access for MLA needs]]></description>
        <long-description><![CDATA[<p>The _template functions are inspired by the book "WordPress 3 Plugin Development Essentials."
Templates separate HTML markup from PHP code for easier maintenance and localization.</p>]]></long-description>
        <tag line="9" name="package" description="Media Library Assistant"/>
        <tag line="9" name="since" description="0.1"/>
      </docblock>
      <property final="false" static="true" visibility="private" line="222" namespace="global" package="Media Library Assistant">
        <name>$query_parameters</name>
        <default><![CDATA[array()]]></default>
        <docblock line="211">
          <description><![CDATA[WP_Query filter "parameters"]]></description>
          <long-description><![CDATA[<p>This array defines parameters for the query's join, where and orderby filters.
The parameters are set up in the _prepare_list_table_query function, and
any further logic required to translate those values is contained in the filters.</p>]]></long-description>
          <tag line="211" name="since" description="0.30"/>
          <tag line="211" name="var" description="" type="array">
            <type by_reference="false">array</type>
          </tag>
        </docblock>
      </property>
      <property final="false" static="true" visibility="private" line="902" namespace="global" package="Media Library Assistant">
        <name>$galleries</name>
        <default><![CDATA[null]]></default>
        <docblock line="884">
          <description><![CDATA[Objects containing [gallery] shortcodes]]></description>
          <long-description><![CDATA[<p>This array contains all of the objects containing one or more [gallery] shortcodes
and array(s) of which attachments each [gallery] contains. The arrays are built once
each page load and cached for subsequent calls.</p>

<p>The outer array is keyed by post_id. It contains an array of [gallery] entries numbered from one (1).
Each inner array has these elements:
['parent_title'] post_title of the gallery parent,
['parent_type'] 'post' or 'page' or the custom post_type of the gallery parent,
['query'] contains a string with the arguments of the [gallery],
['results'] contains an array of post_ids for the objects in the gallery.</p>]]></long-description>
          <tag line="884" name="since" description="0.70"/>
          <tag line="884" name="var" description="" type="array">
            <type by_reference="false">array</type>
          </tag>
        </docblock>
      </property>
      <property final="false" static="true" visibility="private" line="915" namespace="global" package="Media Library Assistant">
        <name>$mla_galleries</name>
        <default><![CDATA[null]]></default>
        <docblock line="904">
          <description><![CDATA[Objects containing [mla_gallery] shortcodes]]></description>
          <long-description><![CDATA[<p>This array contains all of the objects containing one or more [mla_gallery] shortcodes
and array(s) of which attachments each [mla_gallery] contains. The arrays are built once
each page load and cached for subsequent calls.</p>]]></long-description>
          <tag line="904" name="since" description="0.70"/>
          <tag line="904" name="var" description="" type="array">
            <type by_reference="false">array</type>
          </tag>
        </docblock>
      </property>
      <method final="false" abstract="false" static="true" visibility="public" namespace="global" line="24" package="Media Library Assistant">
        <name>initialize</name>
        <full_name>initialize</full_name>
        <docblock line="19">
          <description><![CDATA[Initialization function, similar to __construct()]]></description>
          <long-description><![CDATA[]]></long-description>
          <tag line="19" name="since" description="0.1"/>
        </docblock>
      </method>
      <method final="false" abstract="false" static="true" visibility="public" namespace="global" line="46" package="Media Library Assistant">
        <name>mla_load_template</name>
        <full_name>mla_load_template</full_name>
        <docblock line="28">
          <description><![CDATA[Load an HTML template from a file]]></description>
          <long-description><![CDATA[<p>Loads a template to a string or a multi-part template to an array.
Multi-part templates are divided by comments of the form <!-- template="key" -->,
where "key" becomes the key part of the array.</p>]]></long-description>
          <tag line="28" name="since" description="0.1"/>
          <tag line="28" name="param" description="Complete path and name of the template file, option name or the raw template" type="string" variable="$source">
            <type by_reference="false">string</type>
          </tag>
          <tag line="28" name="param" description="Type of template source; 'file', 'option', 'string'" type="string" variable="$type">
            <type by_reference="false">string</type>
          </tag>
          <tag line="28" name="return" description="string for files that do not contain template divider comments, array for files containing template divider comments, false if file or option does not exist, NULL if file could not be loaded." type="string|array|false|NULL">
            <type by_reference="false">string</type>
            <type by_reference="false">array</type>
            <type by_reference="false">false</type>
            <type by_reference="false">NULL</type>
          </tag>
        </docblock>
        <argument line="46">
          <name>$source</name>
          <default><![CDATA[]]></default>
          <type/>
        </argument>
        <argument line="46">
          <name>$type</name>
          <default><![CDATA['file']]></default>
          <type/>
        </argument>
      </method>
      <method final="false" abstract="false" static="true" visibility="public" namespace="global" line="141" package="Media Library Assistant">
        <name>mla_parse_template</name>
        <full_name>mla_parse_template</full_name>
        <docblock line="129">
          <description><![CDATA[Expand a template, replacing place holders with their values]]></description>
          <long-description><![CDATA[<p>A simple parsing function for basic templating.</p>]]></long-description>
          <tag line="129" name="since" description="0.1"/>
          <tag line="129" name="param" description="A formatting string containing [+placeholders+]" type="string" variable="$tpl">
            <type by_reference="false">string</type>
          </tag>
          <tag line="129" name="param" description="An associative array containing keys and values e.g. array('key' =&gt; 'value')" type="array" variable="$hash">
            <type by_reference="false">array</type>
          </tag>
          <tag line="129" name="return" description="Placeholders corresponding to the keys of the hash will be replaced with their values" type="string">
            <type by_reference="false">string</type>
          </tag>
        </docblock>
        <argument line="141">
          <name>$tpl</name>
          <default><![CDATA[]]></default>
          <type/>
        </argument>
        <argument line="141">
          <name>$hash</name>
          <default><![CDATA[]]></default>
          <type/>
        </argument>
      </method>
      <method final="false" abstract="false" static="true" visibility="public" namespace="global" line="159" package="Media Library Assistant">
        <name>mla_count_list_table_items</name>
        <full_name>mla_count_list_table_items</full_name>
        <docblock line="150">
          <description><![CDATA[Get the total number of attachment posts]]></description>
          <long-description><![CDATA[]]></long-description>
          <tag line="150" name="since" description="0.30"/>
          <tag line="150" name="param" description="Query variables, e.g., from $_REQUEST" type="array" variable="$request">
            <type by_reference="false">array</type>
          </tag>
          <tag line="150" name="return" description="Number of attachment posts" type="integer">
            <type by_reference="false">integer</type>
          </tag>
        </docblock>
        <argument line="159">
          <name>$request</name>
          <default><![CDATA[]]></default>
          <type/>
        </argument>
      </method>
      <method final="false" abstract="false" static="true" visibility="public" namespace="global" line="180" package="Media Library Assistant">
        <name>mla_query_list_table_items</name>
        <full_name>mla_query_list_table_items</full_name>
        <docblock line="166">
          <description><![CDATA[Retrieve attachment objects for list table display]]></description>
          <long-description><![CDATA[<p>Supports prepare_items in class-mla-list-table.php.
Modeled after wp_edit_attachments_query in wp-admin/post.php</p>]]></long-description>
          <tag line="166" name="since" description="0.1"/>
          <tag line="166" name="param" description="query parameters from web page, usually found in $_REQUEST" type="array" variable="$request">
            <type by_reference="false">array</type>
          </tag>
          <tag line="166" name="param" description="number of rows to skip over to reach desired page" type="int" variable="$offset">
            <type by_reference="false">int</type>
          </tag>
          <tag line="166" name="param" description="number of rows on each page" type="int" variable="$count">
            <type by_reference="false">int</type>
          </tag>
          <tag line="166" name="return" description="attachment objects (posts) including parent data, meta data and references" type="array">
            <type by_reference="false">array</type>
          </tag>
        </docblock>
        <argument line="180">
          <name>$request</name>
          <default><![CDATA[]]></default>
          <type/>
        </argument>
        <argument line="180">
          <name>$offset</name>
          <default><![CDATA[]]></default>
          <type/>
        </argument>
        <argument line="180">
          <name>$count</name>
          <default><![CDATA[]]></default>
          <type/>
        </argument>
      </method>
      <method final="false" abstract="false" static="true" visibility="private" namespace="global" line="238" package="Media Library Assistant">
        <name>_prepare_list_table_query</name>
        <full_name>_prepare_list_table_query</full_name>
        <docblock line="224">
          <description><![CDATA[Sanitize and expand query arguments from request variables]]></description>
          <long-description><![CDATA[<p>Prepare the arguments for WP_Query.
Modeled after wp_edit_attachments_query in wp-admin/post.php</p>]]></long-description>
          <tag line="224" name="since" description="0.1"/>
          <tag line="224" name="param" description="query parameters from web page, usually found in $_REQUEST" type="array" variable="$raw_request">
            <type by_reference="false">array</type>
          </tag>
          <tag line="224" name="param" description="number of rows to skip over to reach desired page" type="int" variable="$offset">
            <type by_reference="false">int</type>
          </tag>
          <tag line="224" name="param" description="number of rows on each page (0 = all rows)" type="int" variable="$count">
            <type by_reference="false">int</type>
          </tag>
          <tag line="224" name="return" description="revised arguments suitable for WP_Query" type="array">
            <type by_reference="false">array</type>
          </tag>
        </docblock>
        <argument line="238">
          <name>$raw_request</name>
          <default><![CDATA[]]></default>
          <type/>
        </argument>
        <argument line="238">
          <name>$offset</name>
          <default><![CDATA[0]]></default>
          <type/>
        </argument>
        <argument line="238">
          <name>$count</name>
          <default><![CDATA[0]]></default>
          <type/>
        </argument>
      </method>
      <method final="false" abstract="false" static="true" visibility="private" namespace="global" line="453" package="Media Library Assistant">
        <name>_execute_list_table_query</name>
        <full_name>_execute_list_table_query</full_name>
        <docblock line="444">
          <description><![CDATA[Add filters, run query, remove filters]]></description>
          <long-description><![CDATA[]]></long-description>
          <tag line="444" name="since" description="0.30"/>
          <tag line="444" name="param" description="query parameters from web page, usually found in $_REQUEST" type="array" variable="$request">
            <type by_reference="false">array</type>
          </tag>
          <tag line="444" name="return" description="WP_Query object with query results" type="object">
            <type by_reference="false">object</type>
          </tag>
        </docblock>
        <argument line="453">
          <name>$request</name>
          <default><![CDATA[]]></default>
          <type/>
        </argument>
      </method>
      <method final="false" abstract="false" static="true" visibility="public" namespace="global" line="481" package="Media Library Assistant">
        <name>mla_query_posts_search_filter</name>
        <full_name>mla_query_posts_search_filter</full_name>
        <docblock line="469">
          <description><![CDATA[Adds a keyword search to the WHERE clause, if required]]></description>
          <long-description><![CDATA[<p>Defined as public because it's a filter.</p>]]></long-description>
          <tag line="469" name="since" description="0.60"/>
          <tag line="469" name="param" description="query clause before modification" type="string" variable="$search_string">
            <type by_reference="false">string</type>
          </tag>
          <tag line="469" name="param" description="WP_Query object" type="object" variable="$query_object">
            <type by_reference="false">object</type>
          </tag>
          <tag line="469" name="return" description="query clause after keyword search addition" type="string">
            <type by_reference="false">string</type>
          </tag>
        </docblock>
        <argument line="481">
          <name>$search_string</name>
          <default><![CDATA[]]></default>
          <type/>
        </argument>
        <argument line="481">
          <name>$query_object</name>
          <default><![CDATA[]]></default>
          <type/>
        </argument>
      </method>
      <method final="false" abstract="false" static="true" visibility="public" namespace="global" line="554" package="Media Library Assistant">
        <name>mla_query_posts_join_filter</name>
        <full_name>mla_query_posts_join_filter</full_name>
        <docblock line="543">
          <description><![CDATA[Adds a JOIN clause, if required]]></description>
          <long-description><![CDATA[<p>Defined as public because it's a filter.</p>]]></long-description>
          <tag line="543" name="since" description="0.30"/>
          <tag line="543" name="param" description="query clause before modification" type="string" variable="$join_clause">
            <type by_reference="false">string</type>
          </tag>
          <tag line="543" name="return" description="query clause after &quot;detached&quot; item modification" type="string">
            <type by_reference="false">string</type>
          </tag>
        </docblock>
        <argument line="554">
          <name>$join_clause</name>
          <default><![CDATA[]]></default>
          <type/>
        </argument>
      </method>
      <method final="false" abstract="false" static="true" visibility="public" namespace="global" line="583" package="Media Library Assistant">
        <name>mla_query_posts_where_filter</name>
        <full_name>mla_query_posts_where_filter</full_name>
        <docblock line="571">
          <description><![CDATA[Adds a WHERE clause for detached items]]></description>
          <long-description><![CDATA[<p>Modeled after _edit_attachments_query_helper in wp-admin/post.php.
Defined as public because it's a filter.</p>]]></long-description>
          <tag line="571" name="since" description="0.1"/>
          <tag line="571" name="param" description="query clause before modification" type="string" variable="$where_clause">
            <type by_reference="false">string</type>
          </tag>
          <tag line="571" name="return" description="query clause after &quot;detached&quot; item modification" type="string">
            <type by_reference="false">string</type>
          </tag>
        </docblock>
        <argument line="583">
          <name>$where_clause</name>
          <default><![CDATA[]]></default>
          <type/>
        </argument>
      </method>
      <method final="false" abstract="false" static="true" visibility="public" namespace="global" line="604" package="Media Library Assistant">
        <name>mla_query_posts_orderby_filter</name>
        <full_name>mla_query_posts_orderby_filter</full_name>
        <docblock line="592">
          <description><![CDATA[Adds a ORDERBY clause, if required]]></description>
          <long-description><![CDATA[<p>Expands the range of sort options because the logic in WP_Query is limited.
Defined as public because it's a filter.</p>]]></long-description>
          <tag line="592" name="since" description="0.30"/>
          <tag line="592" name="param" description="query clause before modification" type="string" variable="$orderby_clause">
            <type by_reference="false">string</type>
          </tag>
          <tag line="592" name="return" description="updated query clause" type="string">
            <type by_reference="false">string</type>
          </tag>
        </docblock>
        <argument line="604">
          <name>$orderby_clause</name>
          <default><![CDATA[]]></default>
          <type/>
        </argument>
      </method>
      <method final="false" abstract="false" static="false" visibility="public" namespace="global" line="653" package="Media Library Assistant">
        <name>mla_get_attachment_by_id</name>
        <full_name>mla_get_attachment_by_id</full_name>
        <docblock line="642">
          <description><![CDATA[Retrieve an Attachment array given a $post_id]]></description>
          <long-description><![CDATA[<p>The (associative) array will contain every field that can be found in
the posts and postmeta tables, and all references to the attachment.</p>]]></long-description>
          <tag line="642" name="since" description="0.1"/>
          <tag line="642" name="param" description="The ID of the attachment post" type="int" variable="$post_id">
            <type by_reference="false">int</type>
          </tag>
          <tag line="642" name="return" description="NULL on failure else associative array" type="NULL|array">
            <type by_reference="false">NULL</type>
            <type by_reference="false">array</type>
          </tag>
        </docblock>
        <argument line="653">
          <name>$post_id</name>
          <default><![CDATA[]]></default>
          <type/>
        </argument>
      </method>
      <method final="false" abstract="false" static="true" visibility="public" namespace="global" line="702" package="Media Library Assistant">
        <name>mla_fetch_attachment_references</name>
        <full_name>mla_fetch_attachment_references</full_name>
        <docblock line="689">
          <description><![CDATA[Find Featured Image and inserted image/link references to an attachment]]></description>
          <long-description><![CDATA[<p>Searches all post and page content to see if the attachment is used
as a Featured Image or inserted in the post as an image or link.</p>]]></long-description>
          <tag line="689" name="since" description="0.1"/>
          <tag line="689" name="param" description="post ID of attachment" type="int" variable="$ID">
            <type by_reference="false">int</type>
          </tag>
          <tag line="689" name="param" description="post ID of attachment's parent, if any" type="int" variable="$parent">
            <type by_reference="false">int</type>
          </tag>
          <tag line="689" name="return" description="Reference information; see $references array comments" type="array">
            <type by_reference="false">array</type>
          </tag>
        </docblock>
        <argument line="702">
          <name>$ID</name>
          <default><![CDATA[]]></default>
          <type/>
        </argument>
        <argument line="702">
          <name>$parent</name>
          <default><![CDATA[]]></default>
          <type/>
        </argument>
      </method>
      <method final="false" abstract="false" static="true" visibility="private" namespace="global" line="928" package="Media Library Assistant">
        <name>_build_mla_galleries</name>
        <full_name>_build_mla_galleries</full_name>
        <docblock line="917">
          <description><![CDATA[Builds the $mla_galleries or $galleries array]]></description>
          <long-description><![CDATA[]]></long-description>
          <tag line="917" name="since" description="0.70"/>
          <tag line="917" name="param" description="by reference to the private static galleries array variable" type="array" variable="$galleries_array">
            <type by_reference="false">array</type>
          </tag>
          <tag line="917" name="param" description="the shortcode to be searched for and processed" type="string" variable="$shortcode">
            <type by_reference="false">string</type>
          </tag>
          <tag line="917" name="param" description="true to exclude revisions from the search" type="boolean" variable="$exclude_revisions">
            <type by_reference="false">boolean</type>
          </tag>
          <tag line="917" name="return" description="true if the galleries array is not empty" type="boolean">
            <type by_reference="false">boolean</type>
          </tag>
        </docblock>
        <argument line="928">
          <name>$galleries_array</name>
          <default><![CDATA[]]></default>
          <type/>
        </argument>
        <argument line="928">
          <name>$shortcode</name>
          <default><![CDATA[]]></default>
          <type/>
        </argument>
        <argument line="928">
          <name>$exclude_revisions</name>
          <default><![CDATA[]]></default>
          <type/>
        </argument>
      </method>
      <method final="false" abstract="false" static="true" visibility="private" namespace="global" line="1010" package="Media Library Assistant">
        <name>_search_mla_galleries</name>
        <full_name>_search_mla_galleries</full_name>
        <docblock line="999">
          <description><![CDATA[Search the $mla_galleries or $galleries array]]></description>
          <long-description><![CDATA[]]></long-description>
          <tag line="999" name="since" description="0.70"/>
          <tag line="999" name="param" description="by reference to the private static galleries array variable" type="array" variable="$galleries_array">
            <type by_reference="false">array</type>
          </tag>
          <tag line="999" name="param" description="the attachment ID to be searched for and processed" type="int" variable="$attachment_id">
            <type by_reference="false">int</type>
          </tag>
          <tag line="999" name="return" description="All posts/pages with one or more galleries that include the attachment. The array key is the parent_post ID; each entry contains post_title and post_type." type="array">
            <type by_reference="false">array</type>
          </tag>
        </docblock>
        <argument line="1010">
          <name>$galleries_array</name>
          <default><![CDATA[]]></default>
          <type/>
        </argument>
        <argument line="1010">
          <name>$attachment_id</name>
          <default><![CDATA[]]></default>
          <type/>
        </argument>
      </method>
      <method final="false" abstract="false" static="true" visibility="private" namespace="global" line="1032" package="Media Library Assistant">
        <name>_fetch_attachment_parent_data</name>
        <full_name>_fetch_attachment_parent_data</full_name>
        <docblock line="1023">
          <description><![CDATA[Returns information about an attachment's parent, if found]]></description>
          <long-description><![CDATA[]]></long-description>
          <tag line="1023" name="since" description="0.1"/>
          <tag line="1023" name="param" description="post ID of attachment's parent, if any" type="int" variable="$parent_id">
            <type by_reference="false">int</type>
          </tag>
          <tag line="1023" name="return" description="Parent information; post_date, post_title and post_type" type="array">
            <type by_reference="false">array</type>
          </tag>
        </docblock>
        <argument line="1032">
          <name>$parent_id</name>
          <default><![CDATA[]]></default>
          <type/>
        </argument>
      </method>
      <method final="false" abstract="false" static="true" visibility="private" namespace="global" line="1060" package="Media Library Assistant">
        <name>_fetch_attachment_metadata</name>
        <full_name>_fetch_attachment_metadata</full_name>
        <docblock line="1047">
          <description><![CDATA[Fetch and filter meta data for an attachment]]></description>
          <long-description><![CDATA[<p>Returns a filtered array of a post's meta data. Internal values beginning with '<em>'
are stripped out or converted to an 'mla</em>' equivalent. Array data is replaced with
a string containing the first array element.</p>]]></long-description>
          <tag line="1047" name="since" description="0.1"/>
          <tag line="1047" name="param" description="post ID of attachment" type="int" variable="$post_id">
            <type by_reference="false">int</type>
          </tag>
          <tag line="1047" name="return" description="Meta data variables" type="array">
            <type by_reference="false">array</type>
          </tag>
        </docblock>
        <argument line="1060">
          <name>$post_id</name>
          <default><![CDATA[]]></default>
          <type/>
        </argument>
      </method>
    </class>
  </file>
  <file path="includes\class-mla-list-table.php" hash="7076e77a8b63290ad9cf9bbd949cf7e4" package="Media Library Assistant">
    <docblock line="2">
      <description><![CDATA[Media Library Assistant extended List Table class]]></description>
      <long-description><![CDATA[]]></long-description>
      <tag line="2" name="package" description="Media Library Assistant"/>
      <tag line="2" name="since" description="0.1"/>
    </docblock>
    <include line="13" type="Require Once" package="Media Library Assistant">
      <name/>
    </include>
    <class final="false" abstract="false" namespace="global" line="24" package="Media Library Assistant">
      <extends>\WP_List_Table</extends>
      <name>MLA_List_Table</name>
      <full_name>\MLA_List_Table</full_name>
      <docblock line="16">
        <description><![CDATA[Class MLA (Media Library Assistant) List Table implements the "Assistant" admin submenu]]></description>
        <long-description><![CDATA[<p>Extends the core WP_List_Table class.</p>]]></long-description>
        <tag line="16" name="package" description="Media Library Assistant"/>
        <tag line="16" name="since" description="0.1"/>
      </docblock>
      <property final="false" static="false" visibility="private" line="38" namespace="global" package="Media Library Assistant">
        <name>$rollover_id</name>
        <default><![CDATA[0]]></default>
        <docblock line="29">
          <description><![CDATA[Records assignment of row-level actions to a table row]]></description>
          <long-description><![CDATA[<p>Set to the current Post-ID when row-level actions are output for the row.</p>]]></long-description>
          <tag line="29" name="since" description="0.1"/>
          <tag line="29" name="var" description="" type="int">
            <type by_reference="false">int</type>
          </tag>
        </docblock>
      </property>
      <property final="false" static="false" visibility="private" line="49" namespace="global" package="Media Library Assistant">
        <name>$currently_hidden</name>
        <default><![CDATA[array()]]></default>
        <docblock line="40">
          <description><![CDATA[Currently hidden columns]]></description>
          <long-description><![CDATA[<p>Records hidden columns so row-level actions are not assigned to them.</p>]]></long-description>
          <tag line="40" name="since" description="0.1"/>
          <tag line="40" name="var" description="" type="array">
            <type by_reference="false">array</type>
          </tag>
        </docblock>
      </property>
      <property final="false" static="true" visibility="private" line="72" namespace="global" package="Media Library Assistant">
        <name>$default_columns</name>
        <default><![CDATA[array('cb' => '<input type="checkbox" />', 'icon' => '', 'ID_parent' => 'ID/Parent', 'title_name' => 'Title/Name', 'post_title' => 'Title', 'post_name' => 'Name', 'parent' => 'Parent ID', 'menu_order' => 'Menu Order', 'featured' => 'Featured in', 'inserted' => 'Inserted in', 'galleries' => 'Gallery in', 'mla_galleries' => 'MLA Gallery in', 'alt_text' => 'ALT Text', 'caption' => 'Caption', 'description' => 'Description', 'post_mime_type' => 'MIME Type', 'base_file' => 'Base File', 'date' => 'Date', 'modified' => 'Last Modified', 'author' => 'Author', 'attached_to' => 'Attached to')]]></default>
        <docblock line="55">
          <description><![CDATA[Table column definitions]]></description>
          <long-description><![CDATA[<p>This array defines table columns and titles where the key is the column slug (and class)
and the value is the column's title text. If you need a checkbox for bulk actions,
use the special slug "cb".</p>

<p>The 'cb' column is treated differently than the rest. If including a checkbox
column in your table you must create a column_cb() method. If you don't need
bulk actions or checkboxes, simply leave the 'cb' entry out of your array.</p>

<p>Taxonomy columns are added to this array by mla_admin_init_action.</p>]]></long-description>
          <tag line="55" name="since" description="0.1"/>
          <tag line="55" name="var" description="" type="array">
            <type by_reference="false">array</type>
          </tag>
        </docblock>
      </property>
      <property final="false" static="true" visibility="private" line="112" namespace="global" package="Media Library Assistant">
        <name>$default_hidden_columns</name>
        <default><![CDATA[array('post_title', 'post_name', 'parent', 'menu_order', 'galleries', 'mla_galleries', 'alt_text', 'caption', 'description', 'post_mime_type', 'base_file', 'date', 'modified', 'author', 'attached_to')]]></default>
        <docblock line="97">
          <description><![CDATA[Default values for hidden columns]]></description>
          <long-description><![CDATA[<p>This array is used when the user-level option is not set, i.e.,
the user has not altered the selection of hidden columns.</p>

<p>The value on the right-hand side must match the column slug, e.g.,
array(0 => 'ID_parent, 1 => 'title_name').</p>

<p>Taxonomy columns are added to this array by mla_admin_init_action.</p>]]></long-description>
          <tag line="97" name="since" description="0.1"/>
          <tag line="97" name="var" description="" type="array">
            <type by_reference="false">array</type>
          </tag>
        </docblock>
      </property>
      <property final="false" static="true" visibility="private" line="150" namespace="global" package="Media Library Assistant">
        <name>$default_sortable_columns</name>
        <default><![CDATA[array('ID_parent' => array('ID', false), 'title_name' => array('title_name', false), 'post_title' => array('post_title', false), 'post_name' => array('post_name', false), 'parent' => array('post_parent', false), 'menu_order' => array('menu_order', false), 'alt_text' => array('_wp_attachment_image_alt', false), 'caption' => array('post_excerpt', false), 'description' => array('post_content', false), 'post_mime_type' => array('post_mime_type', false), 'base_file' => array('_wp_attached_file', false), 'date' => array('post_date', false), 'modified' => array('post_modified', false), 'author' => array('post_author', false), 'attached_to' => array('post_parent', false))]]></default>
        <docblock line="135">
          <description><![CDATA[Sortable column definitions]]></description>
          <long-description><![CDATA[<p>This array defines the table columns that can be sorted. The array key
is the column slug that needs to be sortable, and the value is database column
to sort by. Often, the key and value will be the same, but this is not always
the case (as the value is a column name from the database, not the list table).</p>

<p>The array value also contains a boolean which is 'true' if the data is currently
sorted by that column. This is computed each time the table is displayed.</p>]]></long-description>
          <tag line="135" name="since" description="0.1"/>
          <tag line="135" name="var" description="" type="array">
            <type by_reference="false">array</type>
          </tag>
        </docblock>
      </property>
      <method final="false" abstract="false" static="true" visibility="private" namespace="global" line="180" package="Media Library Assistant">
        <name>_default_hidden_columns</name>
        <full_name>_default_hidden_columns</full_name>
        <docblock line="173">
          <description><![CDATA[Access the default list of hidden columns]]></description>
          <long-description><![CDATA[]]></long-description>
          <tag line="173" name="since" description="0.1"/>
          <tag line="173" name="return" description="default list of hidden columns" type="array">
            <type by_reference="false">array</type>
          </tag>
        </docblock>
      </method>
      <method final="false" abstract="false" static="false" visibility="private" namespace="global" line="197" package="Media Library Assistant">
        <name>_avail_mime_types</name>
        <full_name>_avail_mime_types</full_name>
        <docblock line="185">
          <description><![CDATA[Get mime types with one or more attachments for view preparation]]></description>
          <long-description><![CDATA[<p>Modeled after get_available_post_mime_types in wp-admin/includes/post.php,
with additional entries.</p>]]></long-description>
          <tag line="185" name="since" description="0.1"/>
          <tag line="185" name="param" description="Number of posts for each mime type" type="array" variable="$num_posts">
            <type by_reference="false">array</type>
          </tag>
          <tag line="185" name="return" description="Mime type names" type="array">
            <type by_reference="false">array</type>
          </tag>
        </docblock>
        <argument line="197">
          <name>$num_posts</name>
          <default><![CDATA[]]></default>
          <type/>
        </argument>
      </method>
      <method final="false" abstract="false" static="true" visibility="public" namespace="global" line="218" package="Media Library Assistant">
        <name>mla_get_attachment_mime_types</name>
        <full_name>mla_get_attachment_mime_types</full_name>
        <docblock line="208">
          <description><![CDATA[Get possible mime types for view preparation]]></description>
          <long-description><![CDATA[<p>Modeled after get_post_mime_types in wp-admin/includes/post.php,
with additional entries.</p>]]></long-description>
          <tag line="208" name="since" description="0.1"/>
          <tag line="208" name="return" description="Mime type names and HTML markup for views" type="array">
            <type by_reference="false">array</type>
          </tag>
        </docblock>
      </method>
      <method final="false" abstract="false" static="true" visibility="public" namespace="global" line="291" package="Media Library Assistant">
        <name>mla_get_sortable_columns</name>
        <full_name>mla_get_sortable_columns</full_name>
        <docblock line="284">
          <description><![CDATA[Return the names and display values of the sortable columns]]></description>
          <long-description><![CDATA[]]></long-description>
          <tag line="284" name="since" description="0.30"/>
          <tag line="284" name="return" description="name =&gt; array( orderby value, heading ) for sortable columns" type="array">
            <type by_reference="false">array</type>
          </tag>
        </docblock>
      </method>
      <method final="false" abstract="false" static="true" visibility="public" namespace="global" line="318" package="Media Library Assistant">
        <name>mla_manage_hidden_columns_filter</name>
        <full_name>mla_manage_hidden_columns_filter</full_name>
        <docblock line="303">
          <description><![CDATA[Handler for filter 'get_user_option_managemedia_page_mla-menucolumnshidden']]></description>
          <long-description><![CDATA[<p>Required because the screen.php get_hidden_columns function only uses
the get_user_option result. Set when the file is loaded because the object
is not created in time for the call from screen.php.</p>]]></long-description>
          <tag line="303" name="since" description="0.1"/>
          <tag line="303" name="param" description="current list of hidden columns, if any" type="string" variable="$result">
            <type by_reference="false">string</type>
          </tag>
          <tag line="303" name="param" description="'managemedia_page_mla-menucolumnshidden'" type="string" variable="$option">
            <type by_reference="false">string</type>
          </tag>
          <tag line="303" name="param" description="WP_User object, if logged in" type="object" variable="$user_data">
            <type by_reference="false">object</type>
          </tag>
          <tag line="303" name="return" description="updated list of hidden columns" type="array">
            <type by_reference="false">array</type>
          </tag>
        </docblock>
        <argument line="318">
          <name>$result</name>
          <default><![CDATA[]]></default>
          <type/>
        </argument>
        <argument line="318">
          <name>$option</name>
          <default><![CDATA[]]></default>
          <type/>
        </argument>
        <argument line="318">
          <name>$user_data</name>
          <default><![CDATA[]]></default>
          <type/>
        </argument>
      </method>
      <method final="false" abstract="false" static="true" visibility="public" namespace="global" line="336" package="Media Library Assistant">
        <name>mla_manage_columns_filter</name>
        <full_name>mla_manage_columns_filter</full_name>
        <docblock line="325">
          <description><![CDATA[Handler for filter 'manage_media_page_mla-menu_columns']]></description>
          <long-description><![CDATA[<p>This required filter dictates the table's columns and titles. Set when the
file is loaded because the list_table object isn't created in time
to affect the "screen options" setup.</p>]]></long-description>
          <tag line="325" name="since" description="0.1"/>
          <tag line="325" name="return" description="list of table columns" type="array">
            <type by_reference="false">array</type>
          </tag>
        </docblock>
      </method>
      <method final="false" abstract="false" static="true" visibility="public" namespace="global" line="351" package="Media Library Assistant">
        <name>mla_admin_init_action</name>
        <full_name>mla_admin_init_action</full_name>
        <docblock line="341">
          <description><![CDATA[Adds support for taxonomy columns]]></description>
          <long-description><![CDATA[<p>Called in the admin_init action because the list_table object isn't
created in time to affect the "screen options" setup.</p>]]></long-description>
          <tag line="341" name="since" description="0.30"/>
          <tag line="341" name="return" description="" type="void">
            <type by_reference="false">void</type>
          </tag>
        </docblock>
      </method>
      <method final="false" abstract="false" static="false" visibility="public" namespace="global" line="373" package="Media Library Assistant">
        <name>__construct</name>
        <full_name>__construct</full_name>
        <docblock line="365">
          <description><![CDATA[Initializes some properties from $_REQUEST vairables, then
calls the parent constructor to set some default configs.]]></description>
          <long-description><![CDATA[]]></long-description>
          <tag line="365" name="since" description="0.1"/>
          <tag line="365" name="return" description="" type="void">
            <type by_reference="false">void</type>
          </tag>
        </docblock>
      </method>
      <method final="false" abstract="false" static="false" visibility="public" namespace="global" line="405" package="Media Library Assistant">
        <name>column_default</name>
        <full_name>column_default</full_name>
        <docblock line="392">
          <description><![CDATA[Supply a column value if no column-specific function has been defined]]></description>
          <long-description><![CDATA[<p>Called when the parent class can't find a method specifically built for a
given column. The taxonomy columns are handled here. All other columns should
have a specific method, so this function returns a troubleshooting message.</p>]]></long-description>
          <tag line="392" name="since" description="0.1"/>
          <tag line="392" name="param" description="A singular item (one full row's worth of data)" type="array" variable="$item">
            <type by_reference="false">array</type>
          </tag>
          <tag line="392" name="param" description="The name/slug of the column to be processed" type="array" variable="$column_name">
            <type by_reference="false">array</type>
          </tag>
          <tag line="392" name="return" description="Text or HTML to be placed inside the column" type="string">
            <type by_reference="false">string</type>
          </tag>
        </docblock>
        <argument line="405">
          <name>$item</name>
          <default><![CDATA[]]></default>
          <type/>
        </argument>
        <argument line="405">
          <name>$column_name</name>
          <default><![CDATA[]]></default>
          <type/>
        </argument>
      </method>
      <method final="false" abstract="false" static="false" visibility="public" namespace="global" line="447" package="Media Library Assistant">
        <name>column_cb</name>
        <full_name>column_cb</full_name>
        <docblock line="438">
          <description><![CDATA[Displays checkboxes for using bulk actions.]]></description>
          <long-description><![CDATA[<p>The 'cb' column
is given special treatment when columns are processed.</p>]]></long-description>
          <tag line="438" name="since" description="0.1"/>
          <tag line="438" name="param" description="A singular attachment (post) object" type="array" variable="$item">
            <type by_reference="false">array</type>
          </tag>
          <tag line="438" name="return" description="HTML markup to be placed inside the column" type="string">
            <type by_reference="false">string</type>
          </tag>
        </docblock>
        <argument line="447">
          <name>$item</name>
          <default><![CDATA[]]></default>
          <type/>
        </argument>
      </method>
      <method final="false" abstract="false" static="false" visibility="public" namespace="global" line="463" package="Media Library Assistant">
        <name>column_icon</name>
        <full_name>column_icon</full_name>
        <docblock line="455">
          <description><![CDATA[Supply the content for a custom column]]></description>
          <long-description><![CDATA[]]></long-description>
          <tag line="455" name="since" description="0.1"/>
          <tag line="455" name="param" description="A singular attachment (post) object" type="array" variable="$item">
            <type by_reference="false">array</type>
          </tag>
          <tag line="455" name="return" description="HTML markup to be placed inside the column" type="string">
            <type by_reference="false">string</type>
          </tag>
        </docblock>
        <argument line="463">
          <name>$item</name>
          <default><![CDATA[]]></default>
          <type/>
        </argument>
      </method>
      <method final="false" abstract="false" static="false" visibility="private" namespace="global" line="479" package="Media Library Assistant">
        <name>_build_rollover_actions</name>
        <full_name>_build_rollover_actions</full_name>
        <docblock line="468">
          <description><![CDATA[Add rollover actions to exactly one of the following displayed columns:
'ID_parent', 'title_name', 'post_title', 'post_name']]></description>
          <long-description><![CDATA[]]></long-description>
          <tag line="468" name="since" description="0.1"/>
          <tag line="468" name="param" description="A singular attachment (post) object" type="object" variable="$item">
            <type by_reference="false">object</type>
          </tag>
          <tag line="468" name="param" description="Current column name" type="string" variable="$column">
            <type by_reference="false">string</type>
          </tag>
          <tag line="468" name="return" description="Names and URLs of row-level actions" type="array">
            <type by_reference="false">array</type>
          </tag>
        </docblock>
        <argument line="479">
          <name>$item</name>
          <default><![CDATA[]]></default>
          <type/>
        </argument>
        <argument line="479">
          <name>$column</name>
          <default><![CDATA[]]></default>
          <type/>
        </argument>
      </method>
      <method final="false" abstract="false" static="false" visibility="private" namespace="global" line="557" package="Media Library Assistant">
        <name>_build_inline_data</name>
        <full_name>_build_inline_data</full_name>
        <docblock line="548">
          <description><![CDATA[Add hidden fields with the data for use in the inline editor]]></description>
          <long-description><![CDATA[]]></long-description>
          <tag line="548" name="since" description="0.20"/>
          <tag line="548" name="param" description="A singular attachment (post) object" type="object" variable="$item">
            <type by_reference="false">object</type>
          </tag>
          <tag line="548" name="return" description="HTML &lt;div&gt; with row data" type="string">
            <type by_reference="false">string</type>
          </tag>
        </docblock>
        <argument line="557">
          <name>$item</name>
          <default><![CDATA[]]></default>
          <type/>
        </argument>
      </method>
      <method final="false" abstract="false" static="false" visibility="public" namespace="global" line="597" package="Media Library Assistant">
        <name>column_ID_parent</name>
        <full_name>column_ID_parent</full_name>
        <docblock line="589">
          <description><![CDATA[Supply the content for a custom column]]></description>
          <long-description><![CDATA[]]></long-description>
          <tag line="589" name="since" description="0.1"/>
          <tag line="589" name="param" description="A singular attachment (post) object" type="array" variable="$item">
            <type by_reference="false">array</type>
          </tag>
          <tag line="589" name="return" description="HTML markup to be placed inside the column" type="string">
            <type by_reference="false">string</type>
          </tag>
        </docblock>
        <argument line="597">
          <name>$item</name>
          <default><![CDATA[]]></default>
          <type/>
        </argument>
      </method>
      <method final="false" abstract="false" static="false" visibility="public" namespace="global" line="629" package="Media Library Assistant">
        <name>column_title_name</name>
        <full_name>column_title_name</full_name>
        <docblock line="621">
          <description><![CDATA[Supply the content for a custom column]]></description>
          <long-description><![CDATA[]]></long-description>
          <tag line="621" name="since" description="0.1"/>
          <tag line="621" name="param" description="A singular attachment (post) object" type="array" variable="$item">
            <type by_reference="false">array</type>
          </tag>
          <tag line="621" name="return" description="HTML markup to be placed inside the column" type="string">
            <type by_reference="false">string</type>
          </tag>
        </docblock>
        <argument line="629">
          <name>$item</name>
          <default><![CDATA[]]></default>
          <type/>
        </argument>
      </method>
      <method final="false" abstract="false" static="false" visibility="public" namespace="global" line="664" package="Media Library Assistant">
        <name>column_post_title</name>
        <full_name>column_post_title</full_name>
        <docblock line="656">
          <description><![CDATA[Supply the content for a custom column]]></description>
          <long-description><![CDATA[]]></long-description>
          <tag line="656" name="since" description="0.1"/>
          <tag line="656" name="param" description="A singular attachment (post) object" type="array" variable="$item">
            <type by_reference="false">array</type>
          </tag>
          <tag line="656" name="return" description="HTML markup to be placed inside the column" type="string">
            <type by_reference="false">string</type>
          </tag>
        </docblock>
        <argument line="664">
          <name>$item</name>
          <default><![CDATA[]]></default>
          <type/>
        </argument>
      </method>
      <method final="false" abstract="false" static="false" visibility="public" namespace="global" line="682" package="Media Library Assistant">
        <name>column_post_name</name>
        <full_name>column_post_name</full_name>
        <docblock line="674">
          <description><![CDATA[Supply the content for a custom column]]></description>
          <long-description><![CDATA[]]></long-description>
          <tag line="674" name="since" description="0.1"/>
          <tag line="674" name="param" description="A singular attachment (post) object" type="array" variable="$item">
            <type by_reference="false">array</type>
          </tag>
          <tag line="674" name="return" description="HTML markup to be placed inside the column" type="string">
            <type by_reference="false">string</type>
          </tag>
        </docblock>
        <argument line="682">
          <name>$item</name>
          <default><![CDATA[]]></default>
          <type/>
        </argument>
      </method>
      <method final="false" abstract="false" static="false" visibility="public" namespace="global" line="700" package="Media Library Assistant">
        <name>column_parent</name>
        <full_name>column_parent</full_name>
        <docblock line="692">
          <description><![CDATA[Supply the content for a custom column]]></description>
          <long-description><![CDATA[]]></long-description>
          <tag line="692" name="since" description="0.1"/>
          <tag line="692" name="param" description="A singular attachment (post) object" type="array" variable="$item">
            <type by_reference="false">array</type>
          </tag>
          <tag line="692" name="return" description="HTML markup to be placed inside the column" type="string">
            <type by_reference="false">string</type>
          </tag>
        </docblock>
        <argument line="700">
          <name>$item</name>
          <default><![CDATA[]]></default>
          <type/>
        </argument>
      </method>
      <method final="false" abstract="false" static="false" visibility="public" namespace="global" line="725" package="Media Library Assistant">
        <name>column_menu_order</name>
        <full_name>column_menu_order</full_name>
        <docblock line="717">
          <description><![CDATA[Supply the content for a custom column]]></description>
          <long-description><![CDATA[]]></long-description>
          <tag line="717" name="since" description="0.60"/>
          <tag line="717" name="param" description="A singular attachment (post) object" type="array" variable="$item">
            <type by_reference="false">array</type>
          </tag>
          <tag line="717" name="return" description="HTML markup to be placed inside the column" type="string">
            <type by_reference="false">string</type>
          </tag>
        </docblock>
        <argument line="725">
          <name>$item</name>
          <default><![CDATA[]]></default>
          <type/>
        </argument>
      </method>
      <method final="false" abstract="false" static="false" visibility="public" namespace="global" line="737" package="Media Library Assistant">
        <name>column_featured</name>
        <full_name>column_featured</full_name>
        <docblock line="729">
          <description><![CDATA[Supply the content for a custom column]]></description>
          <long-description><![CDATA[]]></long-description>
          <tag line="729" name="since" description="0.1"/>
          <tag line="729" name="param" description="A singular attachment (post) object" type="array" variable="$item">
            <type by_reference="false">array</type>
          </tag>
          <tag line="729" name="return" description="HTML markup to be placed inside the column" type="string">
            <type by_reference="false">string</type>
          </tag>
        </docblock>
        <argument line="737">
          <name>$item</name>
          <default><![CDATA[]]></default>
          <type/>
        </argument>
      </method>
      <method final="false" abstract="false" static="false" visibility="public" namespace="global" line="765" package="Media Library Assistant">
        <name>column_inserted</name>
        <full_name>column_inserted</full_name>
        <docblock line="757">
          <description><![CDATA[Supply the content for a custom column]]></description>
          <long-description><![CDATA[]]></long-description>
          <tag line="757" name="since" description="0.1"/>
          <tag line="757" name="param" description="A singular attachment (post) object" type="array" variable="$item">
            <type by_reference="false">array</type>
          </tag>
          <tag line="757" name="return" description="HTML markup to be placed inside the column" type="string">
            <type by_reference="false">string</type>
          </tag>
        </docblock>
        <argument line="765">
          <name>$item</name>
          <default><![CDATA[]]></default>
          <type/>
        </argument>
      </method>
      <method final="false" abstract="false" static="false" visibility="public" namespace="global" line="797" package="Media Library Assistant">
        <name>column_galleries</name>
        <full_name>column_galleries</full_name>
        <docblock line="789">
          <description><![CDATA[Supply the content for a custom column]]></description>
          <long-description><![CDATA[]]></long-description>
          <tag line="789" name="since" description="0.70"/>
          <tag line="789" name="param" description="A singular attachment (post) object" type="array" variable="$item">
            <type by_reference="false">array</type>
          </tag>
          <tag line="789" name="return" description="HTML markup to be placed inside the column" type="string">
            <type by_reference="false">string</type>
          </tag>
        </docblock>
        <argument line="797">
          <name>$item</name>
          <default><![CDATA[]]></default>
          <type/>
        </argument>
      </method>
      <method final="false" abstract="false" static="false" visibility="public" namespace="global" line="825" package="Media Library Assistant">
        <name>column_mla_galleries</name>
        <full_name>column_mla_galleries</full_name>
        <docblock line="817">
          <description><![CDATA[Supply the content for a custom column]]></description>
          <long-description><![CDATA[]]></long-description>
          <tag line="817" name="since" description="0.70"/>
          <tag line="817" name="param" description="A singular attachment (post) object" type="array" variable="$item">
            <type by_reference="false">array</type>
          </tag>
          <tag line="817" name="return" description="HTML markup to be placed inside the column" type="string">
            <type by_reference="false">string</type>
          </tag>
        </docblock>
        <argument line="825">
          <name>$item</name>
          <default><![CDATA[]]></default>
          <type/>
        </argument>
      </method>
      <method final="false" abstract="false" static="false" visibility="public" namespace="global" line="853" package="Media Library Assistant">
        <name>column_alt_text</name>
        <full_name>column_alt_text</full_name>
        <docblock line="845">
          <description><![CDATA[Supply the content for a custom column]]></description>
          <long-description><![CDATA[]]></long-description>
          <tag line="845" name="since" description="0.1"/>
          <tag line="845" name="param" description="A singular attachment (post) object" type="array" variable="$item">
            <type by_reference="false">array</type>
          </tag>
          <tag line="845" name="return" description="HTML markup to be placed inside the column" type="string">
            <type by_reference="false">string</type>
          </tag>
        </docblock>
        <argument line="853">
          <name>$item</name>
          <default><![CDATA[]]></default>
          <type/>
        </argument>
      </method>
      <method final="false" abstract="false" static="false" visibility="public" namespace="global" line="868" package="Media Library Assistant">
        <name>column_caption</name>
        <full_name>column_caption</full_name>
        <docblock line="860">
          <description><![CDATA[Supply the content for a custom column]]></description>
          <long-description><![CDATA[]]></long-description>
          <tag line="860" name="since" description="0.1"/>
          <tag line="860" name="param" description="A singular attachment (post) object" type="array" variable="$item">
            <type by_reference="false">array</type>
          </tag>
          <tag line="860" name="return" description="HTML markup to be placed inside the column" type="string">
            <type by_reference="false">string</type>
          </tag>
        </docblock>
        <argument line="868">
          <name>$item</name>
          <default><![CDATA[]]></default>
          <type/>
        </argument>
      </method>
      <method final="false" abstract="false" static="false" visibility="public" namespace="global" line="880" package="Media Library Assistant">
        <name>column_description</name>
        <full_name>column_description</full_name>
        <docblock line="872">
          <description><![CDATA[Supply the content for a custom column]]></description>
          <long-description><![CDATA[]]></long-description>
          <tag line="872" name="since" description="0.1"/>
          <tag line="872" name="param" description="A singular attachment (post) object" type="array" variable="$item">
            <type by_reference="false">array</type>
          </tag>
          <tag line="872" name="return" description="HTML markup to be placed inside the column" type="string">
            <type by_reference="false">string</type>
          </tag>
        </docblock>
        <argument line="880">
          <name>$item</name>
          <default><![CDATA[]]></default>
          <type/>
        </argument>
      </method>
      <method final="false" abstract="false" static="false" visibility="public" namespace="global" line="892" package="Media Library Assistant">
        <name>column_post_mime_type</name>
        <full_name>column_post_mime_type</full_name>
        <docblock line="884">
          <description><![CDATA[Supply the content for a custom column]]></description>
          <long-description><![CDATA[]]></long-description>
          <tag line="884" name="since" description="0.30"/>
          <tag line="884" name="param" description="A singular attachment (post) object" type="array" variable="$item">
            <type by_reference="false">array</type>
          </tag>
          <tag line="884" name="return" description="HTML markup to be placed inside the column" type="string">
            <type by_reference="false">string</type>
          </tag>
        </docblock>
        <argument line="892">
          <name>$item</name>
          <default><![CDATA[]]></default>
          <type/>
        </argument>
      </method>
      <method final="false" abstract="false" static="false" visibility="public" namespace="global" line="904" package="Media Library Assistant">
        <name>column_base_file</name>
        <full_name>column_base_file</full_name>
        <docblock line="896">
          <description><![CDATA[Supply the content for a custom column]]></description>
          <long-description><![CDATA[]]></long-description>
          <tag line="896" name="since" description="0.1"/>
          <tag line="896" name="param" description="A singular attachment (post) object" type="array" variable="$item">
            <type by_reference="false">array</type>
          </tag>
          <tag line="896" name="return" description="HTML markup to be placed inside the column" type="string">
            <type by_reference="false">string</type>
          </tag>
        </docblock>
        <argument line="904">
          <name>$item</name>
          <default><![CDATA[]]></default>
          <type/>
        </argument>
      </method>
      <method final="false" abstract="false" static="false" visibility="public" namespace="global" line="916" package="Media Library Assistant">
        <name>column_date</name>
        <full_name>column_date</full_name>
        <docblock line="908">
          <description><![CDATA[Supply the content for a custom column]]></description>
          <long-description><![CDATA[]]></long-description>
          <tag line="908" name="since" description="0.1"/>
          <tag line="908" name="param" description="A singular attachment (post) object" type="array" variable="$item">
            <type by_reference="false">array</type>
          </tag>
          <tag line="908" name="return" description="HTML markup to be placed inside the column" type="string">
            <type by_reference="false">string</type>
          </tag>
        </docblock>
        <argument line="916">
          <name>$item</name>
          <default><![CDATA[]]></default>
          <type/>
        </argument>
      </method>
      <method final="false" abstract="false" static="false" visibility="public" namespace="global" line="945" package="Media Library Assistant">
        <name>column_modified</name>
        <full_name>column_modified</full_name>
        <docblock line="937">
          <description><![CDATA[Supply the content for a custom column]]></description>
          <long-description><![CDATA[]]></long-description>
          <tag line="937" name="since" description="0.30"/>
          <tag line="937" name="param" description="A singular attachment (post) object" type="array" variable="$item">
            <type by_reference="false">array</type>
          </tag>
          <tag line="937" name="return" description="HTML markup to be placed inside the column" type="string">
            <type by_reference="false">string</type>
          </tag>
        </docblock>
        <argument line="945">
          <name>$item</name>
          <default><![CDATA[]]></default>
          <type/>
        </argument>
      </method>
      <method final="false" abstract="false" static="false" visibility="public" namespace="global" line="974" package="Media Library Assistant">
        <name>column_author</name>
        <full_name>column_author</full_name>
        <docblock line="966">
          <description><![CDATA[Supply the content for a custom column]]></description>
          <long-description><![CDATA[]]></long-description>
          <tag line="966" name="since" description="0.30"/>
          <tag line="966" name="param" description="A singular attachment (post) object" type="array" variable="$item">
            <type by_reference="false">array</type>
          </tag>
          <tag line="966" name="return" description="HTML markup to be placed inside the column" type="string">
            <type by_reference="false">string</type>
          </tag>
        </docblock>
        <argument line="974">
          <name>$item</name>
          <default><![CDATA[]]></default>
          <type/>
        </argument>
      </method>
      <method final="false" abstract="false" static="false" visibility="public" namespace="global" line="995" package="Media Library Assistant">
        <name>column_attached_to</name>
        <full_name>column_attached_to</full_name>
        <docblock line="987">
          <description><![CDATA[Supply the content for a custom column]]></description>
          <long-description><![CDATA[]]></long-description>
          <tag line="987" name="since" description="0.1"/>
          <tag line="987" name="param" description="A singular attachment (post) object" type="array" variable="$item">
            <type by_reference="false">array</type>
          </tag>
          <tag line="987" name="return" description="HTML markup to be placed inside the column" type="string">
            <type by_reference="false">string</type>
          </tag>
        </docblock>
        <argument line="995">
          <name>$item</name>
          <default><![CDATA[]]></default>
          <type/>
        </argument>
      </method>
      <method final="false" abstract="false" static="false" visibility="public" namespace="global" line="1024" package="Media Library Assistant">
        <name>get_columns</name>
        <full_name>get_columns</full_name>
        <docblock line="1017">
          <description><![CDATA[This method dictates the table's columns and titles]]></description>
          <long-description><![CDATA[]]></long-description>
          <tag line="1017" name="since" description="0.1"/>
          <tag line="1017" name="return" description="Column information: 'slugs'=&gt;'Visible Titles'" type="array">
            <type by_reference="false">array</type>
          </tag>
        </docblock>
      </method>
      <method final="false" abstract="false" static="false" visibility="public" namespace="global" line="1036" package="Media Library Assistant">
        <name>get_hidden_columns</name>
        <full_name>get_hidden_columns</full_name>
        <docblock line="1028">
          <description><![CDATA[Returns the list of currently hidden columns from a user option or
from default values if the option is not set]]></description>
          <long-description><![CDATA[]]></long-description>
          <tag line="1028" name="since" description="0.1"/>
          <tag line="1028" name="return" description="Column information,e.g., array(0 =&gt; 'ID_parent, 1 =&gt; 'title_name')" type="array">
            <type by_reference="false">array</type>
          </tag>
        </docblock>
      </method>
      <method final="false" abstract="false" static="false" visibility="public" namespace="global" line="1056" package="Media Library Assistant">
        <name>get_sortable_columns</name>
        <full_name>get_sortable_columns</full_name>
        <docblock line="1046">
          <description><![CDATA[Returns an array where the  key is the column that needs to be sortable
and the value is db column to sort by.]]></description>
          <long-description><![CDATA[<p>Also notes the current sort column,
if set.</p>]]></long-description>
          <tag line="1046" name="since" description="0.1"/>
          <tag line="1046" name="return" description="Sortable column information,e.g., 'slugs'=&gt;array('data_values',boolean)" type="array">
            <type by_reference="false">array</type>
          </tag>
        </docblock>
      </method>
      <method final="false" abstract="false" static="false" visibility="public" namespace="global" line="1083" package="Media Library Assistant">
        <name>get_views</name>
        <full_name>get_views</full_name>
        <docblock line="1075">
          <description><![CDATA[Returns an associative array listing all the views that can be used with this table.]]></description>
          <long-description><![CDATA[<p>These are listed across the top of the page and managed by WordPress.</p>]]></long-description>
          <tag line="1075" name="since" description="0.1"/>
          <tag line="1075" name="return" description="View information,e.g., array ( id =&gt; link )" type="array">
            <type by_reference="false">array</type>
          </tag>
        </docblock>
      </method>
      <method final="false" abstract="false" static="false" visibility="public" namespace="global" line="1160" package="Media Library Assistant">
        <name>get_bulk_actions</name>
        <full_name>get_bulk_actions</full_name>
        <docblock line="1152">
          <description><![CDATA[Get an associative array ( option_name => option_title ) with the list
of bulk actions available on this table.]]></description>
          <long-description><![CDATA[]]></long-description>
          <tag line="1152" name="since" description="0.1"/>
          <tag line="1152" name="return" description="Contains all the bulk actions: 'slugs'=&gt;'Visible Titles'" type="array">
            <type by_reference="false">array</type>
          </tag>
        </docblock>
      </method>
      <method final="false" abstract="false" static="false" visibility="public" namespace="global" line="1191" package="Media Library Assistant">
        <name>extra_tablenav</name>
        <full_name>extra_tablenav</full_name>
        <docblock line="1180">
          <description><![CDATA[Extra controls to be displayed between bulk actions and pagination]]></description>
          <long-description><![CDATA[<p>Modeled after class-wp-posts-list-table.php in wp-admin/includes.</p>]]></long-description>
          <tag line="1180" name="since" description="0.1"/>
          <tag line="1180" name="param" description="'top' or 'bottom', i.e., above or below the table rows" type="string" variable="$which">
            <type by_reference="false">string</type>
          </tag>
          <tag line="1180" name="return" description="Contains all the bulk actions: 'slugs'=&gt;'Visible Titles'" type="array">
            <type by_reference="false">array</type>
          </tag>
        </docblock>
        <argument line="1191">
          <name>$which</name>
          <default><![CDATA[]]></default>
          <type/>
        </argument>
      </method>
      <method final="false" abstract="false" static="false" visibility="public" namespace="global" line="1251" package="Media Library Assistant">
        <name>prepare_items</name>
        <full_name>prepare_items</full_name>
        <docblock line="1239">
          <description><![CDATA[Prepares the list of items for displaying]]></description>
          <long-description><![CDATA[<p>This is where you prepare your data for display. This method will usually
be used to query the database, sort and filter the data, and generally
get it ready to be displayed. At a minimum, we should set $this->items and
$this->set_pagination_args().</p>]]></long-description>
          <tag line="1239" name="since" description="0.1"/>
          <tag line="1239" name="return" description="" type="void">
            <type by_reference="false">void</type>
          </tag>
        </docblock>
      </method>
      <method final="false" abstract="false" static="false" visibility="public" namespace="global" line="1297" package="Media Library Assistant">
        <name>single_row</name>
        <full_name>single_row</full_name>
        <docblock line="1288">
          <description><![CDATA[Generates (echoes) content for a single row of the table]]></description>
          <long-description><![CDATA[]]></long-description>
          <tag line="1288" name="since" description=".20"/>
          <tag line="1288" name="param" description="the current item" type="object" variable="$item">
            <type by_reference="false">object</type>
          </tag>
          <tag line="1288" name="return" description="Echoes the row HTML" type="void">
            <type by_reference="false">void</type>
          </tag>
        </docblock>
        <argument line="1297">
          <name>$item</name>
          <default><![CDATA[]]></default>
          <type/>
        </argument>
      </method>
    </class>
  </file>
  <file path="includes\class-mla-main.php" hash="ffcfbcfec7553e6632a9b98e2589a676" package="Media Library Assistant">
    <docblock line="2">
      <description><![CDATA[Top-level functions for the Media Library Assistant]]></description>
      <long-description><![CDATA[]]></long-description>
      <tag line="2" name="package" description="Media Library Assistant"/>
      <tag line="2" name="since" description="0.1"/>
    </docblock>
    <include line="13" type="Require Once" package="Media Library Assistant">
      <name/>
    </include>
    <class final="false" abstract="false" namespace="global" line="23" package="Media Library Assistant">
      <extends/>
      <name>MLA</name>
      <full_name>\MLA</full_name>
      <docblock line="16">
        <description><![CDATA[Class MLA (Media Library Assistant) provides several enhancements to the handling
of images and files held in the WordPress Media Library.]]></description>
        <long-description><![CDATA[]]></long-description>
        <tag line="16" name="package" description="Media Library Assistant"/>
        <tag line="16" name="since" description="0.1"/>
      </docblock>
      <constant namespace="global" line="32" package="Media Library Assistant">
        <name>PLUGIN_NAME</name>
        <full_name>PLUGIN_NAME</full_name>
        <value><![CDATA['Media Library Assistant']]></value>
        <docblock line="25">
          <description><![CDATA[Display name for this plugin]]></description>
          <long-description><![CDATA[]]></long-description>
          <tag line="25" name="since" description="0.1"/>
          <tag line="25" name="var" description="" type="string">
            <type by_reference="false">string</type>
          </tag>
        </docblock>
      </constant>
      <constant namespace="global" line="41" package="Media Library Assistant">
        <name>CURRENT_MLA_VERSION</name>
        <full_name>CURRENT_MLA_VERSION</full_name>
        <value><![CDATA['0.71']]></value>
        <docblock line="34">
          <description><![CDATA[Current version number]]></description>
          <long-description><![CDATA[]]></long-description>
          <tag line="34" name="since" description="0.1"/>
          <tag line="34" name="var" description="" type="string">
            <type by_reference="false">string</type>
          </tag>
        </docblock>
      </constant>
      <constant namespace="global" line="50" package="Media Library Assistant">
        <name>MIN_PHP_VERSION</name>
        <full_name>MIN_PHP_VERSION</full_name>
        <value><![CDATA['5.2']]></value>
        <docblock line="43">
          <description><![CDATA[Minimum version of PHP required for this plugin]]></description>
          <long-description><![CDATA[]]></long-description>
          <tag line="43" name="since" description="0.1"/>
          <tag line="43" name="var" description="" type="string">
            <type by_reference="false">string</type>
          </tag>
        </docblock>
      </constant>
      <constant namespace="global" line="59" package="Media Library Assistant">
        <name>MIN_WORDPRESS_VERSION</name>
        <full_name>MIN_WORDPRESS_VERSION</full_name>
        <value><![CDATA['3.3']]></value>
        <docblock line="52">
          <description><![CDATA[Minimum version of WordPress required for this plugin]]></description>
          <long-description><![CDATA[]]></long-description>
          <tag line="52" name="since" description="0.1"/>
          <tag line="52" name="var" description="" type="string">
            <type by_reference="false">string</type>
          </tag>
        </docblock>
      </constant>
      <constant namespace="global" line="68" package="Media Library Assistant">
        <name>STYLESHEET_SLUG</name>
        <full_name>STYLESHEET_SLUG</full_name>
        <value><![CDATA['mla-style']]></value>
        <docblock line="61">
          <description><![CDATA[Slug for registering and enqueueing plugin style sheet]]></description>
          <long-description><![CDATA[]]></long-description>
          <tag line="61" name="since" description="0.1"/>
          <tag line="61" name="var" description="" type="string">
            <type by_reference="false">string</type>
          </tag>
        </docblock>
      </constant>
      <constant namespace="global" line="77" package="Media Library Assistant">
        <name>JAVASCRIPT_SINGLE_EDIT_SLUG</name>
        <full_name>JAVASCRIPT_SINGLE_EDIT_SLUG</full_name>
        <value><![CDATA['mla-single-edit-scripts']]></value>
        <docblock line="70">
          <description><![CDATA[Slug for localizing and enqueueing JavaScript - edit single item page]]></description>
          <long-description><![CDATA[]]></long-description>
          <tag line="70" name="since" description="0.1"/>
          <tag line="70" name="var" description="" type="string">
            <type by_reference="false">string</type>
          </tag>
        </docblock>
      </constant>
      <constant namespace="global" line="86" package="Media Library Assistant">
        <name>JAVASCRIPT_SINGLE_EDIT_OBJECT</name>
        <full_name>JAVASCRIPT_SINGLE_EDIT_OBJECT</full_name>
        <value><![CDATA['mla_single_edit_vars']]></value>
        <docblock line="79">
          <description><![CDATA[Object name for localizing JavaScript - edit single item page]]></description>
          <long-description><![CDATA[]]></long-description>
          <tag line="79" name="since" description="0.1"/>
          <tag line="79" name="var" description="" type="string">
            <type by_reference="false">string</type>
          </tag>
        </docblock>
      </constant>
      <constant namespace="global" line="95" package="Media Library Assistant">
        <name>JAVASCRIPT_INLINE_EDIT_SLUG</name>
        <full_name>JAVASCRIPT_INLINE_EDIT_SLUG</full_name>
        <value><![CDATA['mla-inline-edit-scripts']]></value>
        <docblock line="88">
          <description><![CDATA[Slug for localizing and enqueueing JavaScript - MLA List Table]]></description>
          <long-description><![CDATA[]]></long-description>
          <tag line="88" name="since" description="0.20"/>
          <tag line="88" name="var" description="" type="string">
            <type by_reference="false">string</type>
          </tag>
        </docblock>
      </constant>
      <constant namespace="global" line="104" package="Media Library Assistant">
        <name>JAVASCRIPT_INLINE_EDIT_OBJECT</name>
        <full_name>JAVASCRIPT_INLINE_EDIT_OBJECT</full_name>
        <value><![CDATA['mla_inline_edit_vars']]></value>
        <docblock line="97">
          <description><![CDATA[Object name for localizing JavaScript - MLA List Table]]></description>
          <long-description><![CDATA[]]></long-description>
          <tag line="97" name="since" description="0.20"/>
          <tag line="97" name="var" description="" type="string">
            <type by_reference="false">string</type>
          </tag>
        </docblock>
      </constant>
      <constant namespace="global" line="113" package="Media Library Assistant">
        <name>ADMIN_PAGE_SLUG</name>
        <full_name>ADMIN_PAGE_SLUG</full_name>
        <value><![CDATA['mla-menu']]></value>
        <docblock line="106">
          <description><![CDATA[Slug for adding plugin submenu]]></description>
          <long-description><![CDATA[]]></long-description>
          <tag line="106" name="since" description="0.1"/>
          <tag line="106" name="var" description="" type="string">
            <type by_reference="false">string</type>
          </tag>
        </docblock>
      </constant>
      <constant namespace="global" line="122" package="Media Library Assistant">
        <name>MLA_ADMIN_NONCE</name>
        <full_name>MLA_ADMIN_NONCE</full_name>
        <value><![CDATA['mla_admin']]></value>
        <docblock line="115">
          <description><![CDATA[Action name; uniquely identifies the nonce]]></description>
          <long-description><![CDATA[]]></long-description>
          <tag line="115" name="since" description="0.1"/>
          <tag line="115" name="var" description="" type="string">
            <type by_reference="false">string</type>
          </tag>
        </docblock>
      </constant>
      <constant namespace="global" line="131" package="Media Library Assistant">
        <name>MLA_ADMIN_SINGLE_DELETE</name>
        <full_name>MLA_ADMIN_SINGLE_DELETE</full_name>
        <value><![CDATA['single_item_delete']]></value>
        <docblock line="124">
          <description><![CDATA[mla_admin_action value for permanently deleting a single item]]></description>
          <long-description><![CDATA[]]></long-description>
          <tag line="124" name="since" description="0.1"/>
          <tag line="124" name="var" description="" type="string">
            <type by_reference="false">string</type>
          </tag>
        </docblock>
      </constant>
      <constant namespace="global" line="140" package="Media Library Assistant">
        <name>MLA_ADMIN_SINGLE_EDIT_DISPLAY</name>
        <full_name>MLA_ADMIN_SINGLE_EDIT_DISPLAY</full_name>
        <value><![CDATA['single_item_edit_display']]></value>
        <docblock line="133">
          <description><![CDATA[mla_admin_action value for displaying a single item]]></description>
          <long-description><![CDATA[]]></long-description>
          <tag line="133" name="since" description="0.1"/>
          <tag line="133" name="var" description="" type="string">
            <type by_reference="false">string</type>
          </tag>
        </docblock>
      </constant>
      <constant namespace="global" line="149" package="Media Library Assistant">
        <name>MLA_ADMIN_SINGLE_EDIT_UPDATE</name>
        <full_name>MLA_ADMIN_SINGLE_EDIT_UPDATE</full_name>
        <value><![CDATA['single_item_edit_update']]></value>
        <docblock line="142">
          <description><![CDATA[mla_admin_action value for updating a single item]]></description>
          <long-description><![CDATA[]]></long-description>
          <tag line="142" name="since" description="0.1"/>
          <tag line="142" name="var" description="" type="string">
            <type by_reference="false">string</type>
          </tag>
        </docblock>
      </constant>
      <constant namespace="global" line="158" package="Media Library Assistant">
        <name>MLA_ADMIN_SINGLE_RESTORE</name>
        <full_name>MLA_ADMIN_SINGLE_RESTORE</full_name>
        <value><![CDATA['single_item_restore']]></value>
        <docblock line="151">
          <description><![CDATA[mla_admin_action value for restoring a single item from the trash]]></description>
          <long-description><![CDATA[]]></long-description>
          <tag line="151" name="since" description="0.1"/>
          <tag line="151" name="var" description="" type="string">
            <type by_reference="false">string</type>
          </tag>
        </docblock>
      </constant>
      <constant namespace="global" line="167" package="Media Library Assistant">
        <name>MLA_ADMIN_SINGLE_TRASH</name>
        <full_name>MLA_ADMIN_SINGLE_TRASH</full_name>
        <value><![CDATA['single_item_trash']]></value>
        <docblock line="160">
          <description><![CDATA[mla_admin_action value for moving a single item to the trash]]></description>
          <long-description><![CDATA[]]></long-description>
          <tag line="160" name="since" description="0.1"/>
          <tag line="160" name="var" description="" type="string">
            <type by_reference="false">string</type>
          </tag>
        </docblock>
      </constant>
      <property final="false" static="true" visibility="private" line="176" namespace="global" package="Media Library Assistant">
        <name>$page_hooks</name>
        <default><![CDATA[array()]]></default>
        <docblock line="169">
          <description><![CDATA[Holds screen ids to match help text to corresponding screen]]></description>
          <long-description><![CDATA[]]></long-description>
          <tag line="169" name="since" description="0.1"/>
          <tag line="169" name="var" description="" type="array">
            <type by_reference="false">array</type>
          </tag>
        </docblock>
      </property>
      <method final="false" abstract="false" static="true" visibility="public" namespace="global" line="189" package="Media Library Assistant">
        <name>initialize</name>
        <full_name>initialize</full_name>
        <docblock line="178">
          <description><![CDATA[Initialization function, similar to __construct()]]></description>
          <long-description><![CDATA[<p>This function contains add_action and add_filter calls
to set up the Ajax handlers, enqueue JavaScript and CSS files, and
set up the Assistant submenu.</p>]]></long-description>
          <tag line="178" name="since" description="0.1"/>
          <tag line="178" name="return" description="" type="void">
            <type by_reference="false">void</type>
          </tag>
        </docblock>
      </method>
      <method final="false" abstract="false" static="true" visibility="public" namespace="global" line="208" package="Media Library Assistant">
        <name>mla_admin_init_action</name>
        <full_name>mla_admin_init_action</full_name>
        <docblock line="201">
          <description><![CDATA[Load the plugin's Ajax handler]]></description>
          <long-description><![CDATA[]]></long-description>
          <tag line="201" name="since" description="0.20"/>
          <tag line="201" name="return" description="" type="void">
            <type by_reference="false">void</type>
          </tag>
        </docblock>
      </method>
      <method final="false" abstract="false" static="true" visibility="public" namespace="global" line="221" package="Media Library Assistant">
        <name>mla_admin_enqueue_scripts_action</name>
        <full_name>mla_admin_enqueue_scripts_action</full_name>
        <docblock line="212">
          <description><![CDATA[Load the plugin's Style Sheet and Javascript files]]></description>
          <long-description><![CDATA[]]></long-description>
          <tag line="212" name="since" description="0.1"/>
          <tag line="212" name="param" description="Name of the page being loaded" type="string" variable="$page_hook">
            <type by_reference="false">string</type>
          </tag>
          <tag line="212" name="return" description="" type="void">
            <type by_reference="false">void</type>
          </tag>
        </docblock>
        <argument line="221">
          <name>$page_hook</name>
          <default><![CDATA[]]></default>
          <type/>
        </argument>
      </method>
      <method final="false" abstract="false" static="true" visibility="public" namespace="global" line="269" package="Media Library Assistant">
        <name>mla_admin_menu_action</name>
        <full_name>mla_admin_menu_action</full_name>
        <docblock line="254">
          <description><![CDATA[Add the submenu pages]]></description>
          <long-description><![CDATA[<p>Add a submenu page in the "Media" section,
add settings page in the "Settings" section.
add settings link in the Plugins section entry for MLA.</p>

<p>For WordPress versions before 3.5,
add submenu page(s) for attachment taxonomies,
add filter to clean up taxonomy submenu labels.</p>]]></long-description>
          <tag line="254" name="since" description="0.1"/>
          <tag line="254" name="return" description="" type="void">
            <type by_reference="false">void</type>
          </tag>
        </docblock>
      </method>
      <method final="false" abstract="false" static="true" visibility="public" namespace="global" line="315" package="Media Library Assistant">
        <name>mla_load_upload_php_action</name>
        <full_name>mla_load_upload_php_action</full_name>
        <docblock line="308">
          <description><![CDATA[Intercept return from Edit Media screen]]></description>
          <long-description><![CDATA[]]></long-description>
          <tag line="308" name="since" description="0.60"/>
          <tag line="308" name="return" description="" type="void">
            <type by_reference="false">void</type>
          </tag>
        </docblock>
      </method>
      <method final="false" abstract="false" static="true" visibility="public" namespace="global" line="328" package="Media Library Assistant">
        <name>mla_load_post_php_action</name>
        <full_name>mla_load_post_php_action</full_name>
        <docblock line="321">
          <description><![CDATA[Intercept call to Edit Media screen]]></description>
          <long-description><![CDATA[]]></long-description>
          <tag line="321" name="since" description="0.60"/>
          <tag line="321" name="return" description="" type="void">
            <type by_reference="false">void</type>
          </tag>
        </docblock>
      </method>
      <method final="false" abstract="false" static="true" visibility="public" namespace="global" line="341" package="Media Library Assistant">
        <name>mla_add_menu_options</name>
        <full_name>mla_add_menu_options</full_name>
        <docblock line="334">
          <description><![CDATA[Add the "XX Entries per page" filter to the Screen Options tab]]></description>
          <long-description><![CDATA[]]></long-description>
          <tag line="334" name="since" description="0.1"/>
          <tag line="334" name="return" description="" type="void">
            <type by_reference="false">void</type>
          </tag>
        </docblock>
      </method>
      <method final="false" abstract="false" static="true" visibility="public" namespace="global" line="360" package="Media Library Assistant">
        <name>mla_add_help_tab</name>
        <full_name>mla_add_help_tab</full_name>
        <docblock line="353">
          <description><![CDATA[Add contextual help tabs to all the MLA pages]]></description>
          <long-description><![CDATA[]]></long-description>
          <tag line="353" name="since" description="0.1"/>
          <tag line="353" name="return" description="" type="void">
            <type by_reference="false">void</type>
          </tag>
        </docblock>
      </method>
      <method final="false" abstract="false" static="true" visibility="public" namespace="global" line="449" package="Media Library Assistant">
        <name>mla_screen_options_show_screen_filter</name>
        <full_name>mla_screen_options_show_screen_filter</full_name>
        <docblock line="439">
          <description><![CDATA[Only show screen options on the table-list screen]]></description>
          <long-description><![CDATA[]]></long-description>
          <tag line="439" name="since" description="0.1"/>
          <tag line="439" name="param" description="True to display &quot;Screen Options&quot;, false to suppress them" type="boolean" variable="$show_screen">
            <type by_reference="false">boolean</type>
          </tag>
          <tag line="439" name="param" description="Name of the page being loaded" type="string" variable="$this_screen">
            <type by_reference="false">string</type>
          </tag>
          <tag line="439" name="return" description="True to display &quot;Screen Options&quot;, false to suppress them" type="boolean">
            <type by_reference="false">boolean</type>
          </tag>
        </docblock>
        <argument line="449">
          <name>$show_screen</name>
          <default><![CDATA[]]></default>
          <type/>
        </argument>
        <argument line="449">
          <name>$this_screen</name>
          <default><![CDATA[]]></default>
          <type/>
        </argument>
      </method>
      <method final="false" abstract="false" static="true" visibility="public" namespace="global" line="467" package="Media Library Assistant">
        <name>mla_set_screen_option_filter</name>
        <full_name>mla_set_screen_option_filter</full_name>
        <docblock line="456">
          <description><![CDATA[Save the "Entries per page" option set by this user]]></description>
          <long-description><![CDATA[]]></long-description>
          <tag line="456" name="since" description="0.1"/>
          <tag line="456" name="param" description="Unknown - always false?" type="boolean" variable="$status">
            <type by_reference="false">boolean</type>
          </tag>
          <tag line="456" name="param" description="Name of the option being changed" type="string" variable="$option">
            <type by_reference="false">string</type>
          </tag>
          <tag line="456" name="param" description="New value of the option" type="string" variable="$value">
            <type by_reference="false">string</type>
          </tag>
          <tag line="456" name="return" description="New value if this is our option, otherwise nothing" type="string|void">
            <type by_reference="false">string</type>
            <type by_reference="false">void</type>
          </tag>
        </docblock>
        <argument line="467">
          <name>$status</name>
          <default><![CDATA[]]></default>
          <type/>
        </argument>
        <argument line="467">
          <name>$option</name>
          <default><![CDATA[]]></default>
          <type/>
        </argument>
        <argument line="467">
          <name>$value</name>
          <default><![CDATA[]]></default>
          <type/>
        </argument>
      </method>
      <method final="false" abstract="false" static="true" visibility="public" namespace="global" line="484" package="Media Library Assistant">
        <name>mla_edit_tax_redirect</name>
        <full_name>mla_edit_tax_redirect</full_name>
        <docblock line="473">
          <description><![CDATA[Redirect to the Edit Tags/Categories page]]></description>
          <long-description><![CDATA[<p>The custom taxonomy add/edit submenu entries go to "upload.php" by default.
This filter is the only way to redirect them to the correct WordPress page.
The filter is not required for WordPress 3.5 and later.</p>]]></long-description>
          <tag line="473" name="since" description="0.1"/>
          <tag line="473" name="return" description="" type="void">
            <type by_reference="false">void</type>
          </tag>
        </docblock>
      </method>
      <method final="false" abstract="false" static="true" visibility="public" namespace="global" line="517" package="Media Library Assistant">
        <name>mla_parent_file_filter</name>
        <full_name>mla_parent_file_filter</full_name>
        <docblock line="501">
          <description><![CDATA[Cleanup menus for Edit Tags/Categories page]]></description>
          <long-description><![CDATA[<p>For WordPress before 3.5, the submenu entries for custom taxonomies
under the "Media" menu are not set up correctly by WordPress, so this
function cleans them up, redirecting the request to the right WordPress
page for editing/adding taxonomy terms.
For WordPress 3.5 and later, the function fixes the submenu bolding when
going to the Edit Media screen.</p>]]></long-description>
          <tag line="501" name="since" description="0.1"/>
          <tag line="501" name="param" description="The top-level menu page" type="array" variable="$parent_file">
            <type by_reference="false">array</type>
          </tag>
          <tag line="501" name="return" description="The updated top-level menu page" type="string">
            <type by_reference="false">string</type>
          </tag>
        </docblock>
        <argument line="517">
          <name>$parent_file</name>
          <default><![CDATA[]]></default>
          <type/>
        </argument>
      </method>
      <method final="false" abstract="false" static="true" visibility="public" namespace="global" line="560" package="Media Library Assistant">
        <name>mla_render_admin_page</name>
        <full_name>mla_render_admin_page</full_name>
        <docblock line="553">
          <description><![CDATA[Render the "Assistant" subpage in the Media section, using the list_table package]]></description>
          <long-description><![CDATA[]]></long-description>
          <tag line="553" name="since" description="0.1"/>
          <tag line="553" name="return" description="" type="void">
            <type by_reference="false">void</type>
          </tag>
        </docblock>
      </method>
      <method final="false" abstract="false" static="true" visibility="public" namespace="global" line="811" package="Media Library Assistant">
        <name>mla_inline_edit_action</name>
        <full_name>mla_inline_edit_action</full_name>
        <docblock line="802">
          <description><![CDATA[Ajax handler for inline editing (quick and bulk edit)]]></description>
          <long-description><![CDATA[<p>Adapted from wp_ajax_inline_save in /wp-admin/includes/ajax-actions.php</p>]]></long-description>
          <tag line="802" name="since" description="0.20"/>
          <tag line="802" name="return" description="echo HTML &lt;tr&gt; markup for updated row or error message, then die()" type="void">
            <type by_reference="false">void</type>
          </tag>
        </docblock>
      </method>
      <method final="false" abstract="false" static="true" visibility="private" namespace="global" line="880" package="Media Library Assistant">
        <name>_build_inline_edit_form</name>
        <full_name>_build_inline_edit_form</full_name>
        <docblock line="869">
          <description><![CDATA[Build the hidden row templates for inline editing (quick and bulk edit)]]></description>
          <long-description><![CDATA[<p>inspired by inline_edit() in wp-admin\includes\class-wp-posts-list-table.php.</p>]]></long-description>
          <tag line="869" name="since" description="0.20"/>
          <tag line="869" name="param" description="MLA List Table object" type="object" variable="$MLAListTable">
            <type by_reference="false">object</type>
          </tag>
          <tag line="869" name="return" description="HTML &lt;form&gt; markup for hidden rows" type="string">
            <type by_reference="false">string</type>
          </tag>
        </docblock>
        <argument line="880">
          <name>$MLAListTable</name>
          <default><![CDATA[]]></default>
          <type/>
        </argument>
      </method>
      <method final="false" abstract="false" static="true" visibility="private" namespace="global" line="1007" package="Media Library Assistant">
        <name>_authors_dropdown</name>
        <full_name>_authors_dropdown</full_name>
        <docblock line="996">
          <description><![CDATA[Get the edit Authors dropdown box, if user has suitable permissions]]></description>
          <long-description><![CDATA[]]></long-description>
          <tag line="996" name="since" description="0.20"/>
          <tag line="996" name="param" description="User ID of the current author" type="integer" variable="$author">
            <type by_reference="false">integer</type>
          </tag>
          <tag line="996" name="param" description="HTML name attribute" type="string" variable="$name">
            <type by_reference="false">string</type>
          </tag>
          <tag line="996" name="param" description="HTML class attribute" type="string" variable="$class">
            <type by_reference="false">string</type>
          </tag>
          <tag line="996" name="return" description="HTML markup for the dropdown field or False" type="string|false">
            <type by_reference="false">string</type>
            <type by_reference="false">false</type>
          </tag>
        </docblock>
        <argument line="1007">
          <name>$author</name>
          <default><![CDATA[0]]></default>
          <type/>
        </argument>
        <argument line="1007">
          <name>$name</name>
          <default><![CDATA['post_author']]></default>
          <type/>
        </argument>
        <argument line="1007">
          <name>$class</name>
          <default><![CDATA['authors']]></default>
          <type/>
        </argument>
      </method>
      <method final="false" abstract="false" static="true" visibility="private" namespace="global" line="1039" package="Media Library Assistant">
        <name>_current_bulk_action</name>
        <full_name>_current_bulk_action</full_name>
        <docblock line="1032">
          <description><![CDATA[Get the current action selected from the bulk actions dropdown]]></description>
          <long-description><![CDATA[]]></long-description>
          <tag line="1032" name="since" description="0.1"/>
          <tag line="1032" name="return" description="The action name or False if no action was selected" type="string|false">
            <type by_reference="false">string</type>
            <type by_reference="false">false</type>
          </tag>
        </docblock>
      </method>
      <method final="false" abstract="false" static="true" visibility="private" namespace="global" line="1069" package="Media Library Assistant">
        <name>_delete_single_item</name>
        <full_name>_delete_single_item</full_name>
        <docblock line="1060">
          <description><![CDATA[Delete a single item permanently]]></description>
          <long-description><![CDATA[]]></long-description>
          <tag line="1060" name="since" description="0.1"/>
          <tag line="1060" name="param" description="The form POST data" type="array" variable="$post_id">
            <type by_reference="false">array</type>
          </tag>
          <tag line="1060" name="return" description="success/failure message and NULL content" type="array">
            <type by_reference="false">array</type>
          </tag>
        </docblock>
        <argument line="1069">
          <name>$post_id</name>
          <default><![CDATA[]]></default>
          <type/>
        </argument>
      </method>
      <method final="false" abstract="false" static="true" visibility="private" namespace="global" line="1098" package="Media Library Assistant">
        <name>_display_single_item</name>
        <full_name>_display_single_item</full_name>
        <docblock line="1088">
          <description><![CDATA[Display a single item sub page; prepare the form to
change the meta data for a single attachment.]]></description>
          <long-description><![CDATA[]]></long-description>
          <tag line="1088" name="since" description="0.1"/>
          <tag line="1088" name="param" description="The WordPress Post ID of the attachment item" type="int" variable="$post_id">
            <type by_reference="false">int</type>
          </tag>
          <tag line="1088" name="return" description="message and/or HTML content" type="array">
            <type by_reference="false">array</type>
          </tag>
        </docblock>
        <argument line="1098">
          <name>$post_id</name>
          <default><![CDATA[]]></default>
          <type/>
        </argument>
      </method>
      <method final="false" abstract="false" static="true" visibility="private" namespace="global" line="1313" package="Media Library Assistant">
        <name>_update_single_item</name>
        <full_name>_update_single_item</full_name>
        <docblock line="1300">
          <description><![CDATA[Update a single item; change the meta data
for a single attachment.]]></description>
          <long-description><![CDATA[]]></long-description>
          <tag line="1300" name="since" description="0.1"/>
          <tag line="1300" name="param" description="The ID of the attachment to be updated" type="int" variable="$post_id">
            <type by_reference="false">int</type>
          </tag>
          <tag line="1300" name="param" description="Field name =&gt; value pairs" type="array" variable="$new_data">
            <type by_reference="false">array</type>
          </tag>
          <tag line="1300" name="param" description="Taxonomy term values" type="array" variable="$tax_input">
            <type by_reference="false">array</type>
          </tag>
          <tag line="1300" name="param" description="Taxonomy actions (add, remove, replace)" type="array" variable="$tax_actions">
            <type by_reference="false">array</type>
          </tag>
          <tag line="1300" name="return" description="success/failure message and NULL content" type="array">
            <type by_reference="false">array</type>
          </tag>
        </docblock>
        <argument line="1313">
          <name>$post_id</name>
          <default><![CDATA[]]></default>
          <type/>
        </argument>
        <argument line="1313">
          <name>$new_data</name>
          <default><![CDATA[]]></default>
          <type/>
        </argument>
        <argument line="1313">
          <name>$tax_input</name>
          <default><![CDATA[NULL]]></default>
          <type/>
        </argument>
        <argument line="1313">
          <name>$tax_actions</name>
          <default><![CDATA[NULL]]></default>
          <type/>
        </argument>
      </method>
      <method final="false" abstract="false" static="true" visibility="private" namespace="global" line="1505" package="Media Library Assistant">
        <name>_remove_tags</name>
        <full_name>_remove_tags</full_name>
        <docblock line="1494">
          <description><![CDATA[Remove tags from a term ids list]]></description>
          <long-description><![CDATA[]]></long-description>
          <tag line="1494" name="since" description="0.40"/>
          <tag line="1494" name="param" description="The term ids currently assigned" type="array" variable="$terms_before">
            <type by_reference="false">array</type>
          </tag>
          <tag line="1494" name="param" description="| string The term ids (array) or names (string) to remove" type="array" variable="$tags">
            <type by_reference="false">array</type>
          </tag>
          <tag line="1494" name="param" description="The taxonomy object" type="object" variable="$taxonomy_obj">
            <type by_reference="false">object</type>
          </tag>
          <tag line="1494" name="return" description="Term ids of the surviving tags" type="array">
            <type by_reference="false">array</type>
          </tag>
        </docblock>
        <argument line="1505">
          <name>$terms_before</name>
          <default><![CDATA[]]></default>
          <type/>
        </argument>
        <argument line="1505">
          <name>$tags</name>
          <default><![CDATA[]]></default>
          <type/>
        </argument>
        <argument line="1505">
          <name>$taxonomy_obj</name>
          <default><![CDATA[]]></default>
          <type/>
        </argument>
      </method>
      <method final="false" abstract="false" static="true" visibility="private" namespace="global" line="1547" package="Media Library Assistant">
        <name>_restore_single_item</name>
        <full_name>_restore_single_item</full_name>
        <docblock line="1538">
          <description><![CDATA[Restore a single item from the Trash]]></description>
          <long-description><![CDATA[]]></long-description>
          <tag line="1538" name="since" description="0.1"/>
          <tag line="1538" name="param" description="The form POST data" type="array" variable="$post_id">
            <type by_reference="false">array</type>
          </tag>
          <tag line="1538" name="return" description="success/failure message and NULL content" type="array">
            <type by_reference="false">array</type>
          </tag>
        </docblock>
        <argument line="1547">
          <name>$post_id</name>
          <default><![CDATA[]]></default>
          <type/>
        </argument>
      </method>
      <method final="false" abstract="false" static="true" visibility="private" namespace="global" line="1583" package="Media Library Assistant">
        <name>_trash_single_item</name>
        <full_name>_trash_single_item</full_name>
        <docblock line="1574">
          <description><![CDATA[Move a single item to Trash]]></description>
          <long-description><![CDATA[]]></long-description>
          <tag line="1574" name="since" description="0.1"/>
          <tag line="1574" name="param" description="The form POST data" type="array" variable="$post_id">
            <type by_reference="false">array</type>
          </tag>
          <tag line="1574" name="return" description="success/failure message and NULL content" type="array">
            <type by_reference="false">array</type>
          </tag>
        </docblock>
        <argument line="1583">
          <name>$post_id</name>
          <default><![CDATA[]]></default>
          <type/>
        </argument>
      </method>
    </class>
  </file>
  <file path="includes\class-mla-objects.php" hash="e829b63334fcd4617993caf68d75e16a" package="Media Library Assistant">
    <docblock line="2">
      <description><![CDATA[Media Library Assistant Custom Taxonomy and Post Type objects]]></description>
      <long-description><![CDATA[]]></long-description>
      <tag line="2" name="package" description="Media Library Assistant"/>
      <tag line="2" name="since" description="0.1"/>
    </docblock>
    <class final="false" abstract="false" namespace="global" line="15" package="Media Library Assistant">
      <extends/>
      <name>MLAObjects</name>
      <full_name>\MLAObjects</full_name>
      <docblock line="9">
        <description><![CDATA[Class MLA (Media Library Assistant) Objects defines and manages custom taxonomies for Attachment Categories and Tags]]></description>
        <long-description><![CDATA[]]></long-description>
        <tag line="9" name="package" description="Media Library Assistant"/>
        <tag line="9" name="since" description="0.20"/>
      </docblock>
      <method final="false" abstract="false" static="true" visibility="public" namespace="global" line="23" package="Media Library Assistant">
        <name>initialize</name>
        <full_name>initialize</full_name>
        <docblock line="16">
          <description><![CDATA[Initialization function, similar to __construct()]]></description>
          <long-description><![CDATA[]]></long-description>
          <tag line="16" name="since" description="0.20"/>
          <tag line="16" name="return" description="" type="void">
            <type by_reference="false">void</type>
          </tag>
        </docblock>
      </method>
      <method final="false" abstract="false" static="true" visibility="private" namespace="global" line="41" package="Media Library Assistant">
        <name>_build_taxonomies</name>
        <full_name>_build_taxonomies</full_name>
        <docblock line="34">
          <description><![CDATA[Registers Attachment Categories and Attachment Tags custom taxonomies, adds taxonomy-related filters]]></description>
          <long-description><![CDATA[]]></long-description>
          <tag line="34" name="since" description="0.1"/>
          <tag line="34" name="return" description="" type="void">
            <type by_reference="false">void</type>
          </tag>
        </docblock>
      </method>
      <method final="false" abstract="false" static="true" visibility="public" namespace="global" line="121" package="Media Library Assistant">
        <name>mla_taxonomy_get_columns_filter</name>
        <full_name>mla_taxonomy_get_columns_filter</full_name>
        <docblock line="111">
          <description><![CDATA[WordPress Filter for edit taxonomy "Attachments" column,
which replaces the "Posts" column with an equivalent "Attachments" column.]]></description>
          <long-description><![CDATA[]]></long-description>
          <tag line="111" name="since" description="0.30"/>
          <tag line="111" name="param" description="column definitions for the edit taxonomy list table" type="array" variable="$columns">
            <type by_reference="false">array</type>
          </tag>
          <tag line="111" name="return" description="updated column definitions for the edit taxonomy list table" type="array">
            <type by_reference="false">array</type>
          </tag>
        </docblock>
        <argument line="121">
          <name>$columns</name>
          <default><![CDATA[]]></default>
          <type/>
        </argument>
      </method>
      <method final="false" abstract="false" static="true" visibility="public" namespace="global" line="147" package="Media Library Assistant">
        <name>mla_taxonomy_column_filter</name>
        <full_name>mla_taxonomy_column_filter</full_name>
        <docblock line="134">
          <description><![CDATA[WordPress Filter for edit taxonomy "Attachments" column,
which returns a count of the attachments assigned a given term]]></description>
          <long-description><![CDATA[]]></long-description>
          <tag line="134" name="since" description="0.30"/>
          <tag line="134" name="param" description="current column value; always ''" type="string" variable="$place_holder">
            <type by_reference="false">string</type>
          </tag>
          <tag line="134" name="param" description="name of the column" type="array" variable="$column_name">
            <type by_reference="false">array</type>
          </tag>
          <tag line="134" name="param" description="ID of the term for which the count is desired" type="array" variable="$term_id">
            <type by_reference="false">array</type>
          </tag>
          <tag line="134" name="return" description="HTML markup for the column content; number of attachments in the category and alink to retrieve a list of them" type="array">
            <type by_reference="false">array</type>
          </tag>
        </docblock>
        <argument line="147">
          <name>$place_holder</name>
          <default><![CDATA[]]></default>
          <type/>
        </argument>
        <argument line="147">
          <name>$column_name</name>
          <default><![CDATA[]]></default>
          <type/>
        </argument>
        <argument line="147">
          <name>$term_id</name>
          <default><![CDATA[]]></default>
          <type/>
        </argument>
      </method>
    </class>
  </file>
  <file path="includes\class-mla-settings.php" hash="1680e112c3fa28e997da057f3a7d3951" package="Media Library Assistant">
    <docblock line="2">
      <description><![CDATA[Manages the plugin option settings and provides the settings page to edit them]]></description>
      <long-description><![CDATA[]]></long-description>
      <tag line="2" name="package" description="Media Library Assistant"/>
      <tag line="2" name="since" description="0.1"/>
    </docblock>
    <class final="false" abstract="false" namespace="global" line="16" package="Media Library Assistant">
      <extends/>
      <name>MLASettings</name>
      <full_name>\MLASettings</full_name>
      <docblock line="9">
        <description><![CDATA[Class MLA (Media Library Assistant) Settings manages the plugin option settings
and provides the settings page to edit them.]]></description>
        <long-description><![CDATA[]]></long-description>
        <tag line="9" name="package" description="Media Library Assistant"/>
        <tag line="9" name="since" description="0.1"/>
      </docblock>
      <constant namespace="global" line="29" package="Media Library Assistant">
        <name>MLA_ALT_TEXT_VIEW_SUFFIX</name>
        <full_name>MLA_ALT_TEXT_VIEW_SUFFIX</full_name>
        <value><![CDATA['alt_text_view']]></value>
        <docblock line="26">
          <description><![CDATA[Provides a unique suffix for the ALT Text SQL VIEW]]></description>
          <long-description><![CDATA[]]></long-description>
        </docblock>
      </constant>
      <constant namespace="global" line="34" package="Media Library Assistant">
        <name>MLA_SETTINGS_SLUG</name>
        <full_name>MLA_SETTINGS_SLUG</full_name>
        <value><![CDATA['mla-settings-menu']]></value>
        <docblock line="31">
          <description><![CDATA[Provides a unique name for the settings page]]></description>
          <long-description><![CDATA[]]></long-description>
        </docblock>
      </constant>
      <constant namespace="global" line="39" package="Media Library Assistant">
        <name>MLA_VERSION_OPTION</name>
        <full_name>MLA_VERSION_OPTION</full_name>
        <value><![CDATA['current_version']]></value>
        <docblock line="36">
          <description><![CDATA[Provides a unique name for the current version option]]></description>
          <long-description><![CDATA[]]></long-description>
        </docblock>
      </constant>
      <property final="false" static="true" visibility="public" line="24" namespace="global" package="Media Library Assistant">
        <name>$mla_alt_text_view</name>
        <default><![CDATA[null]]></default>
        <docblock line="17">
          <description><![CDATA[Provides a unique name for the ALT Text SQL VIEW]]></description>
          <long-description><![CDATA[]]></long-description>
          <tag line="17" name="since" description="0.40"/>
          <tag line="17" name="var" description="" type="array">
            <type by_reference="false">array</type>
          </tag>
        </docblock>
      </property>
      <property final="false" static="true" visibility="private" line="65" namespace="global" package="Media Library Assistant">
        <name>$mla_options</name>
        <default><![CDATA[array(self::MLA_VERSION_OPTION => array('type' => 'hidden', 'std' => '0'), 'attachment_category' => array('name' => 'Attachment Categories', 'type' => 'hidden', 'std' => 'checked', 'help' => 'Check this option to add support for Attachment Categories.'), 'attachment_tag' => array('name' => 'Attachment Tags', 'type' => 'hidden', 'std' => 'checked', 'help' => 'Check this option to add support for Attachment Tags.'), 'where_used_heading' => array('name' => 'Where-used Reporting', 'type' => 'header'), 'exclude_revisions' => array('name' => 'Exclude Revisions', 'type' => 'checkbox', 'std' => 'checked', 'help' => 'Check this option to exclude revisions from where-used reporting.'), 'taxonomy_heading' => array('name' => 'Taxonomy Support', 'type' => 'header'), 'taxonomy_support' => array('help' => 'Check the "Support" box to add the taxonomy to the Assistant.<br>Check the "Inline Edit" box to display the taxonomy in the Quick Edit and Bulk Edit areas.<br>Use the "List Filter" option to select the taxonomy on which to filter the Assistant table listing.', 'std' => array('tax_support' => array('attachment_category' => 'checked', 'attachment_tag' => 'checked'), 'tax_quick_edit' => array('attachment_category' => 'checked', 'attachment_tag' => 'checked'), 'tax_filter' => 'attachment_category'), 'type' => 'custom', 'render' => '_taxonomy_handler', 'update' => '_taxonomy_handler', 'delete' => '_taxonomy_handler', 'reset' => '_taxonomy_handler'), 'orderby_heading' => array('name' => 'Default Table Listing Sort Order', 'type' => 'header'), 'default_orderby' => array('name' => 'Order By', 'type' => 'select', 'std' => 'title_name', 'options' => array('title_name'), 'texts' => array('Title/Name'), 'help' => 'Select the column for the sort order of the Assistant table listing.'), 'default_order' => array('name' => 'Order', 'type' => 'radio', 'std' => 'ASC', 'options' => array('ASC', 'DESC'), 'texts' => array('Ascending', 'Descending'), 'help' => 'Choose the sort order.'))]]></default>
        <docblock line="41">
          <description><![CDATA[$mla_options defines the database options and admin page areas for setting/updating them.]]></description>
          <long-description><![CDATA[<p>Each option is defined by an array with the following elements:</p>

<p>array key => HTML id/name attribute and option database key (OMIT MLA_OPTION_PREFIX)</p>

<p>name => admin page label or heading text
type => 'checkbox', 'header', 'radio', 'select', 'text', 'textarea', 'custom', 'hidden'
std => default value
help => help text
size => text size, default 40
cols => textbox columns, default 90
rows => textbox rows, default 5
options => array of radio or select option values
texts => array of radio or select option display texts
render => rendering function for 'custom' options. Usage:
    $options_list .= ['render']( 'render', $key, $value, $page_template_array );
update => update function for 'custom' options; returns nothing. Usage:
    $message = ['update']( 'update', $key, $value, $_REQUEST );
delete => delete function for 'custom' options; returns nothing. Usage:
    $message = ['delete']( 'delete', $key, $value, $_REQUEST );
reset => reset function for 'custom' options; returns nothing. Usage:
    $message = ['reset']( 'reset', $key, $value, $_REQUEST );</p>]]></long-description>
        </docblock>
      </property>
      <method final="false" abstract="false" static="true" visibility="public" namespace="global" line="171" package="Media Library Assistant">
        <name>initialize</name>
        <full_name>initialize</full_name>
        <docblock line="164">
          <description><![CDATA[Initialization function, similar to __construct()]]></description>
          <long-description><![CDATA[]]></long-description>
          <tag line="164" name="since" description="0.1"/>
          <tag line="164" name="return" description="" type="void">
            <type by_reference="false">void</type>
          </tag>
        </docblock>
      </method>
      <method final="false" abstract="false" static="true" visibility="private" namespace="global" line="187" package="Media Library Assistant">
        <name>_version_upgrade</name>
        <full_name>_version_upgrade</full_name>
        <docblock line="180">
          <description><![CDATA[Database and option update check, for installing new versions]]></description>
          <long-description><![CDATA[]]></long-description>
          <tag line="180" name="since" description="0.30"/>
          <tag line="180" name="return" description="" type="void">
            <type by_reference="false">void</type>
          </tag>
        </docblock>
      </method>
      <method final="false" abstract="false" static="true" visibility="private" namespace="global" line="229" package="Media Library Assistant">
        <name>_create_alt_text_view</name>
        <full_name>_create_alt_text_view</full_name>
        <docblock line="219">
          <description><![CDATA[Add a view to the database to support sorting the listing on 'ALT Text']]></description>
          <long-description><![CDATA[<p>This function is called on each plugin invocation because the plugin upgrade process
does not call the activation hook.</p>]]></long-description>
          <tag line="219" name="since" description="0.50"/>
          <tag line="219" name="return" description="" type="void">
            <type by_reference="false">void</type>
          </tag>
        </docblock>
      </method>
      <method final="false" abstract="false" static="true" visibility="public" namespace="global" line="265" package="Media Library Assistant">
        <name>mla_activation_hook</name>
        <full_name>mla_activation_hook</full_name>
        <docblock line="256">
          <description><![CDATA[Perform one-time actions on plugin activation]]></description>
          <long-description><![CDATA[<p>Adds a view to the database to support sorting the listing on 'ALT Text'.</p>]]></long-description>
          <tag line="256" name="since" description="0.40"/>
          <tag line="256" name="return" description="" type="void">
            <type by_reference="false">void</type>
          </tag>
        </docblock>
      </method>
      <method final="false" abstract="false" static="true" visibility="public" namespace="global" line="278" package="Media Library Assistant">
        <name>mla_deactivation_hook</name>
        <full_name>mla_deactivation_hook</full_name>
        <docblock line="269">
          <description><![CDATA[Perform one-time actions on plugin deactivation]]></description>
          <long-description><![CDATA[<p>Removes a view from the database that supports sorting the listing on 'ALT Text'.</p>]]></long-description>
          <tag line="269" name="since" description="0.40"/>
          <tag line="269" name="return" description="" type="void">
            <type by_reference="false">void</type>
          </tag>
        </docblock>
      </method>
      <method final="false" abstract="false" static="true" visibility="public" namespace="global" line="309" package="Media Library Assistant">
        <name>mla_admin_menu_action</name>
        <full_name>mla_admin_menu_action</full_name>
        <docblock line="301">
          <description><![CDATA[Add settings page in the "Settings" section,
add settings link in the Plugins section entry for MLA.]]></description>
          <long-description><![CDATA[]]></long-description>
          <tag line="301" name="since" description="0.1"/>
          <tag line="301" name="return" description="" type="void">
            <type by_reference="false">void</type>
          </tag>
        </docblock>
      </method>
      <method final="false" abstract="false" static="true" visibility="public" namespace="global" line="327" package="Media Library Assistant">
        <name>mla_add_plugin_settings_link</name>
        <full_name>mla_add_plugin_settings_link</full_name>
        <docblock line="317">
          <description><![CDATA[Add the "Settings" link to the MLA entry in the Plugins section]]></description>
          <long-description><![CDATA[]]></long-description>
          <tag line="317" name="since" description="0.1"/>
          <tag line="317" name="param" description="array of links for the Plugin, e.g., &quot;Activate&quot;" type="array" variable="$links">
            <type by_reference="false">array</type>
          </tag>
          <tag line="317" name="param" description="Directory and name of the plugin Index file" type="string" variable="$file">
            <type by_reference="false">string</type>
          </tag>
          <tag line="317" name="return" description="Updated array of links for the Plugin" type="array">
            <type by_reference="false">array</type>
          </tag>
        </docblock>
        <argument line="327">
          <name>$links</name>
          <default><![CDATA[]]></default>
          <type/>
        </argument>
        <argument line="327">
          <name>$file</name>
          <default><![CDATA[]]></default>
          <type/>
        </argument>
      </method>
      <method final="false" abstract="false" static="true" visibility="public" namespace="global" line="345" package="Media Library Assistant">
        <name>mla_get_option</name>
        <full_name>mla_get_option</full_name>
        <docblock line="336">
          <description><![CDATA[Return the stored value or default value of a defined MLA option]]></description>
          <long-description><![CDATA[]]></long-description>
          <tag line="336" name="since" description="0.1"/>
          <tag line="336" name="param" description="Name of the desired option" type="string" variable="$option">
            <type by_reference="false">string</type>
          </tag>
          <tag line="336" name="return" description="Value(s) for the option or false if the option is not a defined MLA option" type="mixed">
            <type by_reference="false">mixed</type>
          </tag>
        </docblock>
        <argument line="345">
          <name>$option</name>
          <default><![CDATA[]]></default>
          <type/>
        </argument>
      </method>
      <method final="false" abstract="false" static="true" visibility="public" namespace="global" line="366" package="Media Library Assistant">
        <name>mla_update_option</name>
        <full_name>mla_update_option</full_name>
        <docblock line="356">
          <description><![CDATA[Add or update the stored value of a defined MLA option]]></description>
          <long-description><![CDATA[]]></long-description>
          <tag line="356" name="since" description="0.1"/>
          <tag line="356" name="param" description="Name of the desired option" type="string" variable="$option">
            <type by_reference="false">string</type>
          </tag>
          <tag line="356" name="param" description="New value for the desired option" type="mixed" variable="$newvalue">
            <type by_reference="false">mixed</type>
          </tag>
          <tag line="356" name="return" description="True if the value was changed or false if the update failed" type="boolean">
            <type by_reference="false">boolean</type>
          </tag>
        </docblock>
        <argument line="366">
          <name>$option</name>
          <default><![CDATA[]]></default>
          <type/>
        </argument>
        <argument line="366">
          <name>$newvalue</name>
          <default><![CDATA[]]></default>
          <type/>
        </argument>
      </method>
      <method final="false" abstract="false" static="true" visibility="public" namespace="global" line="382" package="Media Library Assistant">
        <name>mla_delete_option</name>
        <full_name>mla_delete_option</full_name>
        <docblock line="373">
          <description><![CDATA[Delete the stored value of a defined MLA option]]></description>
          <long-description><![CDATA[]]></long-description>
          <tag line="373" name="since" description="0.1"/>
          <tag line="373" name="param" description="Name of the desired option" type="string" variable="$option">
            <type by_reference="false">string</type>
          </tag>
          <tag line="373" name="return" description="True if the option was deleted, otherwise false" type="boolean">
            <type by_reference="false">boolean</type>
          </tag>
        </docblock>
        <argument line="382">
          <name>$option</name>
          <default><![CDATA[]]></default>
          <type/>
        </argument>
      </method>
      <method final="false" abstract="false" static="true" visibility="public" namespace="global" line="397" package="Media Library Assistant">
        <name>mla_render_settings_page</name>
        <full_name>mla_render_settings_page</full_name>
        <docblock line="390">
          <description><![CDATA[Render (echo) the "Media Library Assistant" subpage in the Settings section]]></description>
          <long-description><![CDATA[]]></long-description>
          <tag line="390" name="since" description="0.1"/>
          <tag line="390" name="return" description="Echoes HTML markup for the settings subpage" type="void">
            <type by_reference="false">void</type>
          </tag>
        </docblock>
      </method>
      <method final="false" abstract="false" static="true" visibility="public" namespace="global" line="619" package="Media Library Assistant">
        <name>mla_taxonomy_support</name>
        <full_name>mla_taxonomy_support</full_name>
        <docblock line="606">
          <description><![CDATA[Determine MLA support for a taxonomy, handling the special case where the
settings are being updated or reset.]]></description>
          <long-description><![CDATA[]]></long-description>
          <tag line="606" name="since" description="0.30"/>
          <tag line="606" name="param" description="Taxonomy name, e.g., attachment_category" type="string" variable="$tax_name">
            <type by_reference="false">string</type>
          </tag>
          <tag line="606" name="param" description="'support' (the default), 'quick-edit' or 'filter'" type="string" variable="$support_type">
            <type by_reference="false">string</type>
          </tag>
          <tag line="606" name="return" description="true if the taxonomy is supported in this way else false string if $tax_name is '' and $support_type is 'filter', returns the taxonomy to filter by" type="boolean|string">
            <type by_reference="false">boolean</type>
            <type by_reference="false">string</type>
          </tag>
        </docblock>
        <argument line="619">
          <name>$tax_name</name>
          <default><![CDATA[]]></default>
          <type/>
        </argument>
        <argument line="619">
          <name>$support_type</name>
          <default><![CDATA['support']]></default>
          <type/>
        </argument>
      </method>
      <method final="false" abstract="false" static="true" visibility="private" namespace="global" line="691" package="Media Library Assistant">
        <name>_save_settings</name>
        <full_name>_save_settings</full_name>
        <docblock line="682">
          <description><![CDATA[Save settings to the options table]]></description>
          <long-description><![CDATA[]]></long-description>
          <tag line="682" name="since" description="0.1"/>
          <tag line="682" name="param" description="HTML template(s) for the settings page" type="array" variable="$template_array">
            <type by_reference="false">array</type>
          </tag>
          <tag line="682" name="return" description="Message(s) reflecting the results of the operation" type="array">
            <type by_reference="false">array</type>
          </tag>
        </docblock>
        <argument line="691">
          <name>$template_array</name>
          <default><![CDATA[]]></default>
          <type/>
        </argument>
      </method>
      <method final="false" abstract="false" static="true" visibility="private" namespace="global" line="782" package="Media Library Assistant">
        <name>_reset_settings</name>
        <full_name>_reset_settings</full_name>
        <docblock line="773">
          <description><![CDATA[Delete saved settings, restoring default values]]></description>
          <long-description><![CDATA[]]></long-description>
          <tag line="773" name="since" description="0.1"/>
          <tag line="773" name="param" description="HTML template(s) for the settings page" type="array" variable="$template_array">
            <type by_reference="false">array</type>
          </tag>
          <tag line="773" name="return" description="Message(s) reflecting the results of the operation" type="array">
            <type by_reference="false">array</type>
          </tag>
        </docblock>
        <argument line="782">
          <name>$template_array</name>
          <default><![CDATA[]]></default>
          <type/>
        </argument>
      </method>
      <method final="false" abstract="false" static="true" visibility="private" namespace="global" line="825" package="Media Library Assistant">
        <name>_taxonomy_handler</name>
        <full_name>_taxonomy_handler</full_name>
        <docblock line="813">
          <description><![CDATA[Render and manage other taxonomy support options, e.g., Categories and Post Tags]]></description>
          <long-description><![CDATA[]]></long-description>
          <tag line="813" name="since" description="0.30"/>
          <tag line="813" name="param" description="'render', 'update', 'delete', or 'reset'" type="string" variable="$action">
            <type by_reference="false">string</type>
          </tag>
          <tag line="813" name="param" description="option name, e.g., 'taxonomy_support'" type="string" variable="$key">
            <type by_reference="false">string</type>
          </tag>
          <tag line="813" name="param" description="option parameters" type="array" variable="$value">
            <type by_reference="false">array</type>
          </tag>
          <tag line="813" name="param" description="The $page_template_array for 'render' else $_REQUEST" type="array" variable="$args">
            <type by_reference="false">array</type>
          </tag>
          <tag line="813" name="return" description="HTML table row markup for 'render' else message(s) reflecting the results of the operation." type="string">
            <type by_reference="false">string</type>
          </tag>
        </docblock>
        <argument line="825">
          <name>$action</name>
          <default><![CDATA[]]></default>
          <type/>
        </argument>
        <argument line="825">
          <name>$key</name>
          <default><![CDATA[]]></default>
          <type/>
        </argument>
        <argument line="825">
          <name>$value</name>
          <default><![CDATA[]]></default>
          <type/>
        </argument>
        <argument line="825">
          <name>$args</name>
          <default><![CDATA[]]></default>
          <type/>
        </argument>
      </method>
    </class>
  </file>
  <file path="includes\class-mla-shortcodes.php" hash="d77b8e63a9ec2dc65324584b34313d52" package="Media Library Assistant">
    <docblock line="2">
      <description><![CDATA[Media Library Assistant Shortcode handler(s)]]></description>
      <long-description><![CDATA[]]></long-description>
      <tag line="2" name="package" description="Media Library Assistant"/>
      <tag line="2" name="since" description="0.1"/>
    </docblock>
    <class final="false" abstract="false" namespace="global" line="15" package="Media Library Assistant">
      <extends/>
      <name>MLAShortcodes</name>
      <full_name>\MLAShortcodes</full_name>
      <docblock line="9">
        <description><![CDATA[Class MLA (Media Library Assistant) Shortcodes defines the shortcodes available to MLA users]]></description>
        <long-description><![CDATA[]]></long-description>
        <tag line="9" name="package" description="Media Library Assistant"/>
        <tag line="9" name="since" description="0.20"/>
      </docblock>
      <property final="false" static="true" visibility="private" line="132" namespace="global" package="Media Library Assistant">
        <name>$mla_debug_messages</name>
        <default><![CDATA['']]></default>
        <docblock line="125">
          <description><![CDATA[Accumulates debug messages]]></description>
          <long-description><![CDATA[]]></long-description>
          <tag line="125" name="since" description="0.60"/>
          <tag line="125" name="var" description="" type="string">
            <type by_reference="false">string</type>
          </tag>
        </docblock>
      </property>
      <property final="false" static="true" visibility="private" line="141" namespace="global" package="Media Library Assistant">
        <name>$mla_debug</name>
        <default><![CDATA[false]]></default>
        <docblock line="134">
          <description><![CDATA[Turn debug collection and display on or off]]></description>
          <long-description><![CDATA[]]></long-description>
          <tag line="134" name="since" description="0.70"/>
          <tag line="134" name="var" description="" type="boolean">
            <type by_reference="false">boolean</type>
          </tag>
        </docblock>
      </property>
      <method final="false" abstract="false" static="true" visibility="public" namespace="global" line="23" package="Media Library Assistant">
        <name>initialize</name>
        <full_name>initialize</full_name>
        <docblock line="16">
          <description><![CDATA[Initialization function, similar to __construct()]]></description>
          <long-description><![CDATA[]]></long-description>
          <tag line="16" name="since" description="0.20"/>
          <tag line="16" name="return" description="" type="void">
            <type by_reference="false">void</type>
          </tag>
        </docblock>
      </method>
      <method final="false" abstract="false" static="true" visibility="public" namespace="global" line="35" package="Media Library Assistant">
        <name>mla_attachment_list_shortcode</name>
        <full_name>mla_attachment_list_shortcode</full_name>
        <docblock line="28">
          <description><![CDATA[WordPress Shortcode; renders a complete list of all attachments and references to them]]></description>
          <long-description><![CDATA[]]></long-description>
          <tag line="28" name="since" description="0.1"/>
          <tag line="28" name="return" description="echoes HTML markup for the attachment list" type="void">
            <type by_reference="false">void</type>
          </tag>
        </docblock>
      </method>
      <method final="false" abstract="false" static="true" visibility="public" namespace="global" line="156" package="Media Library Assistant">
        <name>mla_gallery_shortcode</name>
        <full_name>mla_gallery_shortcode</full_name>
        <docblock line="143">
          <description><![CDATA[The MLA Gallery shortcode.]]></description>
          <long-description><![CDATA[<p>This is a superset of the WordPress Gallery shortcode for displaying images on a post,
page or custom post type. It is adapted from /wp-includes/media.php gallery_shortcode.
Enhancements include many additional selection parameters and full taxonomy support.</p>]]></long-description>
          <tag line="143" name="since" description=".50"/>
          <tag line="143" name="param" description="Attributes of the shortcode." type="array" variable="$attr">
            <type by_reference="false">array</type>
          </tag>
          <tag line="143" name="return" description="HTML content to display gallery." type="string">
            <type by_reference="false">string</type>
          </tag>
        </docblock>
        <argument line="156">
          <name>$attr</name>
          <default><![CDATA[]]></default>
          <type/>
        </argument>
      </method>
      <method final="false" abstract="false" static="true" visibility="public" namespace="global" line="289" package="Media Library Assistant">
        <name>mla_get_shortcode_attachments</name>
        <full_name>mla_get_shortcode_attachments</full_name>
        <docblock line="279">
          <description><![CDATA[Parses shortcode parameters and returns the gallery objects]]></description>
          <long-description><![CDATA[]]></long-description>
          <tag line="279" name="since" description=".50"/>
          <tag line="279" name="param" description="Post ID of the parent" type="int" variable="$post_parent">
            <type by_reference="false">int</type>
          </tag>
          <tag line="279" name="param" description="Attributes of the shortcode" type="array" variable="$attr">
            <type by_reference="false">array</type>
          </tag>
          <tag line="279" name="return" description="List of attachments returned from WP_Query" type="array">
            <type by_reference="false">array</type>
          </tag>
        </docblock>
        <argument line="289">
          <name>$post_parent</name>
          <default><![CDATA[]]></default>
          <type/>
        </argument>
        <argument line="289">
          <name>$attr</name>
          <default><![CDATA[]]></default>
          <type/>
        </argument>
      </method>
      <method final="false" abstract="false" static="true" visibility="public" namespace="global" line="615" package="Media Library Assistant">
        <name>mla_shortcode_query_posts_where_filter</name>
        <full_name>mla_shortcode_query_posts_where_filter</full_name>
        <docblock line="602">
          <description><![CDATA[Filters the WHERE clause for shortcode queries]]></description>
          <long-description><![CDATA[<p>Captures debug information. Adds whitespace to the post_type = 'attachment'
phrase to circumvent subsequent Role Scoper modification of the clause.
Defined as public because it's a filter.</p>]]></long-description>
          <tag line="602" name="since" description="0.70"/>
          <tag line="602" name="param" description="query clause before modification" type="string" variable="$where_clause">
            <type by_reference="false">string</type>
          </tag>
          <tag line="602" name="return" description="query clause after modification" type="string">
            <type by_reference="false">string</type>
          </tag>
        </docblock>
        <argument line="615">
          <name>$where_clause</name>
          <default><![CDATA[]]></default>
          <type/>
        </argument>
      </method>
    </class>
  </file>
  <file path="includes\mla-plugin-loader.php" hash="a9524964c779b4fd40d40dad431cf4d1" package="Media Library Assistant">
    <docblock line="2">
      <description><![CDATA[Media Library Assistant Plugin Loader]]></description>
      <long-description><![CDATA[<p>Defines constants and loads all of the classes and functions required to run the plugin.
This file is only loaded if the naming conflict tests in index.php are passed.</p>]]></long-description>
      <tag line="2" name="package" description="Media Library Assistant"/>
      <tag line="2" name="since" description="0.20"/>
    </docblock>
    <include line="21" type="Require Once" package="Media Library Assistant">
      <name/>
    </include>
    <include line="28" type="Require Once" package="Media Library Assistant">
      <name/>
    </include>
    <include line="35" type="Require Once" package="Media Library Assistant">
      <name/>
    </include>
    <include line="42" type="Require Once" package="Media Library Assistant">
      <name/>
    </include>
    <include line="49" type="Require Once" package="Media Library Assistant">
      <name/>
    </include>
    <include line="56" type="Require Once" package="Media Library Assistant">
      <name/>
    </include>
    <include line="61" type="Require Once" package="Media Library Assistant">
      <name/>
    </include>
    <constant namespace="global" line="16" package="Media Library Assistant">
      <name>MLA_OPTION_PREFIX</name>
      <full_name>\MLA_OPTION_PREFIX</full_name>
      <value><![CDATA['mla_']]></value>
      <docblock line="13">
        <description><![CDATA[Gives a unique prefix for plugin options; can be set in wp-config.php]]></description>
        <long-description><![CDATA[]]></long-description>
      </docblock>
    </constant>
  </file>
  <file path="index.php" hash="2dfe672594252372fc565786939779b5" package="Media Library Assistant">
    <docblock line="2">
      <description><![CDATA[Provides several enhancements to the handling of images and files held in the WordPress Media Library]]></description>
      <long-description><![CDATA[<p>This file contains several tests for name conflicts with other plugins. Only if the tests are passed
will the rest of the plugin be loaded and run.</p>]]></long-description>
      <tag line="2" name="package" description="Media Library Assistant"/>
      <tag line="2" name="version" description="0.71"/>
    </docblock>
    <include line="103" type="Require Once" package="Media Library Assistant">
      <name>includes/mla-plugin-loader.php</name>
    </include>
    <constant namespace="global" line="35" package="Media Library Assistant">
      <name>MLA_PLUGIN_PATH</name>
      <full_name>\MLA_PLUGIN_PATH</full_name>
      <value><![CDATA[plugin_dir_path(__FILE__)]]></value>
      <docblock line="32">
        <description><![CDATA[Provides path information to the plugin root in file system format.]]></description>
        <long-description><![CDATA[]]></long-description>
      </docblock>
    </constant>
    <constant namespace="global" line="45" package="Media Library Assistant">
      <name>MLA_PLUGIN_URL</name>
      <full_name>\MLA_PLUGIN_URL</full_name>
      <value><![CDATA[plugin_dir_url(__FILE__)]]></value>
      <docblock line="42">
        <description><![CDATA[Provides path information to the plugin root in URL format.]]></description>
        <long-description><![CDATA[]]></long-description>
      </docblock>
    </constant>
    <function namespace="global" line="91" package="Media Library Assistant">
      <name>mla_name_conflict_reporting_action</name>
      <full_name>\mla_name_conflict_reporting_action</full_name>
      <docblock line="86">
        <description><![CDATA[Displays name conflict error messages at the top of the Dashboard]]></description>
        <long-description><![CDATA[]]></long-description>
        <tag line="86" name="since" description="0.20"/>
      </docblock>
    </function>
  </file>
  <file path="tests\class-mla-tests.php" hash="86b5bb13f31a596214ee5a938e686e0a" package="Media Library Assistant">
    <docblock line="2">
      <description><![CDATA[Provides basic run-time tests to ensure the plugin can run in the current WordPress envrionment]]></description>
      <long-description><![CDATA[]]></long-description>
      <tag line="2" name="package" description="Media Library Assistant"/>
      <tag line="2" name="since" description="0.1"/>
    </docblock>
    <class final="false" abstract="false" namespace="global" line="16" package="Media Library Assistant">
      <extends/>
      <name>MLATest</name>
      <full_name>\MLATest</full_name>
      <docblock line="9">
        <description><![CDATA[Class MLA (Media Library Assistant) Test provides basic run-time tests
to ensure the plugin can run in the current WordPress envrionment.]]></description>
        <long-description><![CDATA[]]></long-description>
        <tag line="9" name="package" description="Media Library Assistant"/>
        <tag line="9" name="since" description="0.1"/>
      </docblock>
      <property final="false" static="true" visibility="public" line="24" namespace="global" package="Media Library Assistant">
        <name>$wordpress_3point5_plus</name>
        <default><![CDATA[null]]></default>
        <docblock line="17">
          <description><![CDATA[True if WordPress version is 3.5 or newer]]></description>
          <long-description><![CDATA[]]></long-description>
          <tag line="17" name="since" description="0.60"/>
          <tag line="17" name="var" description="" type="boolean">
            <type by_reference="false">boolean</type>
          </tag>
        </docblock>
      </property>
      <method final="false" abstract="false" static="true" visibility="public" namespace="global" line="33" package="Media Library Assistant">
        <name>initialize</name>
        <full_name>initialize</full_name>
        <docblock line="26">
          <description><![CDATA[Initialization function, similar to __construct()]]></description>
          <long-description><![CDATA[]]></long-description>
          <tag line="26" name="since" description="0.60"/>
          <tag line="26" name="return" description="" type="void">
            <type by_reference="false">void</type>
          </tag>
        </docblock>
      </method>
      <method final="false" abstract="false" static="true" visibility="public" namespace="global" line="47" package="Media Library Assistant">
        <name>min_php_version</name>
        <full_name>min_php_version</full_name>
        <docblock line="37">
          <description><![CDATA[Test that your PHP version is at least that of the $min_php_version]]></description>
          <long-description><![CDATA[]]></long-description>
          <tag line="37" name="since" description="0.1"/>
          <tag line="37" name="param" description="representing the minimum required version of PHP, e.g. '5.3.2'" type="string" variable="$min_version">
            <type by_reference="false">string</type>
          </tag>
          <tag line="37" name="param" description="Name of the plugin for messaging purposes" type="string" variable="$plugin_name">
            <type by_reference="false">string</type>
          </tag>
          <tag line="37" name="return" description="Exit with messaging if PHP version is too old" type="void">
            <type by_reference="false">void</type>
          </tag>
        </docblock>
        <argument line="47">
          <name>$min_version</name>
          <default><![CDATA[]]></default>
          <type/>
        </argument>
        <argument line="47">
          <name>$plugin_name</name>
          <default><![CDATA[]]></default>
          <type/>
        </argument>
      </method>
      <method final="false" abstract="false" static="true" visibility="public" namespace="global" line="67" package="Media Library Assistant">
        <name>min_WordPress_version</name>
        <full_name>min_WordPress_version</full_name>
        <docblock line="57">
          <description><![CDATA[Test that your WordPress version is at least that of the $min_version]]></description>
          <long-description><![CDATA[]]></long-description>
          <tag line="57" name="since" description="0.1"/>
          <tag line="57" name="param" description="representing the minimum required version of WordPress, e.g. '3.3.0'" type="string" variable="$min_version">
            <type by_reference="false">string</type>
          </tag>
          <tag line="57" name="param" description="Name of the plugin for messaging purposes" type="string" variable="$plugin_name">
            <type by_reference="false">string</type>
          </tag>
          <tag line="57" name="return" description="Exit with messaging if version is too old" type="void">
            <type by_reference="false">void</type>
          </tag>
        </docblock>
        <argument line="67">
          <name>$min_version</name>
          <default><![CDATA[]]></default>
          <type/>
        </argument>
        <argument line="67">
          <name>$plugin_name</name>
          <default><![CDATA[]]></default>
          <type/>
        </argument>
      </method>
    </class>
  </file>
  <package name="Media Library Assistant" full_name="Media Library Assistant"/>
  <namespace name="global" full_name="global"/>
  <marker count="0">todo</marker>
  <marker count="0">fixme</marker>
  <deprecated count="0"/>
</project>
